Fix starting monoliths

This commit is contained in:
Melledy
2026-04-15 22:49:50 -07:00
parent eef6572073
commit d4e89e649d
@@ -892,8 +892,10 @@ public class GameCharacter implements GameDatabaseObject {
if (gem != null) { if (gem != null) {
info.addAllAttributes(gem.getAttributes()); info.addAllAttributes(gem.getAttributes());
info.addAllOverlockCount(new int[gem.getAttributes().length]);
} else { } else {
info.addAllAttributes(new int[] {0, 0, 0, 0}); info.addAllAttributes(new int[4]);
info.addAllOverlockCount(new int[4]);
} }
proto.addGems(info); proto.addGems(info);