must be in safezone to switch boxes

This commit is contained in:
2025-02-15 06:44:16 -06:00
parent 24e01acff4
commit 048474b014
+9 -1
View File
@@ -5229,6 +5229,12 @@ public class PlayerCharacter extends AbstractCharacter {
} }
} }
boolean valid = true;
for(PlayerCharacter pc : sameMachine){
if(!pc.safeZone)
valid = false;
}
if(valid) {
for (PlayerCharacter pc : sameMachine) for (PlayerCharacter pc : sameMachine)
pc.isBoxed = true; pc.isBoxed = true;
@@ -5236,7 +5242,9 @@ public class PlayerCharacter extends AbstractCharacter {
if (player.containsEffect(1672601862)) { if (player.containsEffect(1672601862)) {
player.removeEffectBySource(EffectSourceType.DeathShroud, 41, false); player.removeEffectBySource(EffectSourceType.DeathShroud, 41, false);
} }
}else{
ChatManager.chatSystemInfo(player, "All Boxes Must Be In Safezone To Switch");
}
} }
public static boolean checkIfBoxed(PlayerCharacter player){ public static boolean checkIfBoxed(PlayerCharacter player){
if(ConfigManager.MB_WORLD_BOXLIMIT.getValue().equals("false")) { if(ConfigManager.MB_WORLD_BOXLIMIT.getValue().equals("false")) {