NPC slotting now conforms with bootstrap.

This commit is contained in:
2023-07-21 13:15:24 -04:00
parent ccc9908e1e
commit 413e782af1
+3 -3
View File
@@ -531,7 +531,7 @@ public enum BuildingManager {
if (mob == null) if (mob == null)
return false; return false;
WorldGrid.addObject(mob, contractOwner); mob.setLoc(mob.getLoc());
return true; return true;
} }
@@ -543,7 +543,7 @@ public enum BuildingManager {
if (mob == null) if (mob == null)
return false; return false;
WorldGrid.addObject(mob, contractOwner); mob.setLoc(mob.getLoc());
return true; return true;
} }
@@ -555,7 +555,7 @@ public enum BuildingManager {
if (mob == null) if (mob == null)
return false; return false;
WorldGrid.addObject(mob, contractOwner); mob.setLoc(mob.getLoc());
return true; return true;
} }