Implement !giveall command

-Also fixed server error when receiving characters
This commit is contained in:
Melledy
2025-11-17 08:57:25 -08:00
parent 5f851a0367
commit b97f23aa3c
4 changed files with 131 additions and 0 deletions

View File

@@ -83,6 +83,8 @@ public class GameCharacter implements GameDatabaseObject {
this.skin = data.getDefaultSkinId();
this.skills = new int[] {1, 1, 1, 1, 1};
this.talents = new Bitset();
this.gemPresets = new ArrayList<>();
this.gemSlots = new CharacterGemSlot[GameConstants.CHARACTER_MAX_GEM_SLOTS];
this.createTime = Nebula.getCurrentTime();
this.contact = new CharacterContact(this);