box check only every 10 seconds

This commit is contained in:
2024-05-18 00:08:58 -05:00
parent 27550293d6
commit 45048b2b4e
+3
View File
@@ -4913,13 +4913,16 @@ public class PlayerCharacter extends AbstractCharacter {
continue; continue;
if (pc.isBoxed == false) { if (pc.isBoxed == false) {
player.isBoxed = true; player.isBoxed = true;
InterestManager.setObjectDirty(player);
return; return;
} }
} }
player.isBoxed = false; player.isBoxed = false;
InterestManager.setObjectDirty(player);
}catch(Exception e){ }catch(Exception e){
player.isBoxed = false; player.isBoxed = false;
InterestManager.setObjectDirty(player);
} }
} }