Browse Source

force respawn after 10 minutes dead

lakebane-strongholds
FatBoy-DOTC 2 months ago
parent
commit
9dbd6069f1
  1. 3
      src/engine/objects/PlayerCharacter.java

3
src/engine/objects/PlayerCharacter.java

@ -4861,6 +4861,9 @@ public class PlayerCharacter extends AbstractCharacter { @@ -4861,6 +4861,9 @@ public class PlayerCharacter extends AbstractCharacter {
try {
if (!this.isAlive()) {
if(!this.timestamps.containsKey("DeathTime")){
this.timestamps.put("DeathTime",System.currentTimeMillis());
}
if((System.currentTimeMillis() - this.timestamps.get("DeathTime")) > 600000)
forceRespawn(this);
return;

Loading…
Cancel
Save