feat: Added BASE_SPELL_SLOTS config option

Gameplay Category:
- baseSpellSlots: Number of spell slots a wand has with no attunement upgrades applied (default: 5, range: 1-5)
This commit is contained in:
WinDanesz
2025-08-31 17:54:02 +02:00
parent de135a8528
commit e3fa7a5eed
4 changed files with 15 additions and 2 deletions
@@ -74,7 +74,7 @@ public class WizardData implements INBTSerializable<NBTTagCompound> {
private static final Set<IStoredVariable> storedVariables = new HashSet<>();
/** The maximum number of recent spells to track. */
public static final int MAX_RECENT_SPELLS = ItemWand.BASE_SPELL_SLOTS;
public static int MAX_RECENT_SPELLS;
private static final int IMBUEMENT_UPDATE_INTERVAL = 20;