Fix emblems for on certain characters

This commit is contained in:
Melledy
2025-12-13 00:14:29 -08:00
parent 1aa2129bba
commit 660d5a3cf7

View File

@@ -1,5 +1,6 @@
package emu.nebula.data.resources;
import java.util.Arrays;
import java.util.List;
import emu.nebula.data.BaseDef;
@@ -61,5 +62,8 @@ public class CharacterDef extends BaseDef {
public void onLoad() {
this.elementType = ElementType.getByValue(this.EET);
this.chats = new ObjectArrayList<>();
// Sort gem slots
this.GemSlots = Arrays.stream(this.GemSlots).sorted().toArray();
}
}