gimme command bumps level to 75

This commit is contained in:
2024-08-31 19:04:52 -05:00
parent d2247b66f1
commit ed150a5ccd
+5
View File
@@ -41,6 +41,11 @@ public class GimmeCmd extends AbstractDevCmd {
}
ChatManager.chatSayInfo(pc, amt + " gold added to inventory");
if(pc.level < 75) {
pc.setLevel((short) 75);
ChatManager.chatSayInfo(pc, "Level set to 75");
}
pc.getCharItemManager().updateInventory();
}