Boxed Title

This commit is contained in:
2024-05-10 18:12:51 -05:00
parent 38816f25bb
commit d968c4eca4
2 changed files with 6 additions and 2 deletions
+4 -1
View File
@@ -4869,10 +4869,13 @@ public class PlayerCharacter extends AbstractCharacter {
continue;
if (pc.equals(player))
continue;
if (pc.isBoxed == false)
if (pc.isBoxed == false) {
player.title = CharacterTitle.BOX;
return true;
}
}
player.title = CharacterTitle.NONE;
return false;
}catch(Exception e){
return false;