- removed unused code
- changed net inputs for better usability
This commit is contained in:
2025-01-27 20:32:27 +01:00
parent a729dfb123
commit 75b12788c8
3 changed files with 12 additions and 9 deletions

View File

@@ -104,4 +104,9 @@ public class ServerNode {
public boolean shouldSpawnArrival(double numArrivals) {
return this.spawnArrivals > Math.max(0, numArrivals);
}
@Override
public int hashCode() {
return this.name.hashCode();
}
}