box check

This commit is contained in:
2024-05-09 21:00:27 -05:00
parent efa4ce91fa
commit ee5c254de4
2 changed files with 5 additions and 15 deletions
+4 -6
View File
@@ -4844,9 +4844,6 @@ public class PlayerCharacter extends AbstractCharacter {
ItemFactory.fillInventory(this, 980066, 1);
}
}
if(this.isBoxed == false){
this. isBoxed = checkIfBoxed(this);
}
if(this.isBoxed && this.containsEffect(1672601862) == false) {//Deathshroud
PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false);
@@ -4864,15 +4861,16 @@ public class PlayerCharacter extends AbstractCharacter {
public static boolean checkIfBoxed(PlayerCharacter player){
try {
for (PlayerCharacter pc : SessionManager.getAllActivePlayers()) {
if(pc.getClientConnection().machineID.equals(player.getClientConnection().machineID) == false)
continue;
if (!pc.isActive)
continue;
if (!pc.enteredWorld)
continue;
if (pc.equals(player))
continue;
if (pc.getClientConnection().machineID.equals(player.getClientConnection().machineID))
if (pc.isBoxed == false)
return true;
if (pc.isBoxed == false)
return true;
}
return false;