Browse Source

error popup when trying to flag unboxed too frequently

lakebane-new
FatBoy-DOTC 5 months ago
parent
commit
c6d4375aa8
  1. 6
      src/engine/net/client/msg/VendorDialogMsg.java

6
src/engine/net/client/msg/VendorDialogMsg.java

@ -101,8 +101,12 @@ public class VendorDialogMsg extends ClientNetMsg { @@ -101,8 +101,12 @@ public class VendorDialogMsg extends ClientNetMsg {
if(!playerCharacter.getTimestamps().containsKey("lastBoxFlag"))
playerCharacter.getTimestamps().put("lastBoxFlag",System.currentTimeMillis() - 1000);
if(playerCharacter.getTimestamps().get("lastBoxFlag") + 10000 > System.currentTimeMillis())
if(playerCharacter.getTimestamps().get("lastBoxFlag") + 10000 > System.currentTimeMillis()) {
PlayerCharacter.unboxPlayer(playerCharacter);
}else{
ErrorPopupMsg.sendErrorPopup(playerCharacter, 49);
return;
}
}
// Restrict disc trainers to only characters who have

Loading…
Cancel
Save