Fix emblem reforging not working when reforging locked attributes

This commit is contained in:
Melledy
2025-11-21 03:35:28 -08:00
parent eead51d32f
commit be842e4269

View File

@@ -49,7 +49,7 @@ public class CharGemSlotControlDef extends BaseDef {
list.add(attributeType.getRandomValue()); list.add(attributeType.getRandomValue());
} }
if (list.size() >= this.MaxAlterNum) { if (list.getValueCount() >= this.MaxAlterNum) {
return list; return list;
} }
} }