Compare commits

...

2 Commits

Author SHA1 Message Date
MagicBot fb6ec0caf4 Changed method used to direct bounds 2023-10-19 08:15:32 -04:00
MagicBot 944bcb7e84 Changed method used to direct bounds 2023-10-19 08:15:22 -04:00
+1 -1
View File
@@ -952,7 +952,7 @@ public enum BuildingManager {
if (building == null)
continue;
if (Bounds.collide(loc, building))
if (Bounds.collide(loc, building.getBounds()))
return building;
}