From 91e75ee7f1a68f7aa78c894a5164ea1946c4f876 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sun, 2 Nov 2025 00:10:00 +0000
Subject: [PATCH] Clarify that singleUseSpellBooks config does not affect
scrolls
Co-authored-by: WinDanesz <31292708+WinDanesz@users.noreply.github.com>
---
src/main/java/electroblob/wizardry/Settings.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/electroblob/wizardry/Settings.java b/src/main/java/electroblob/wizardry/Settings.java
index 4074fc61..22924d62 100644
--- a/src/main/java/electroblob/wizardry/Settings.java
+++ b/src/main/java/electroblob/wizardry/Settings.java
@@ -207,7 +207,7 @@ public final class Settings {
/** [Server-only] Whether damage should be registered with the old system (wizardry_magic/indirect_wizardry_magic) prefixed damage with the elements like
* necromancy_indirect_wizardry_magic, necromancy_wizardry_magic*/
public boolean damageTypePerElement = false;
- /** [Server-only] Whether spell books are consumed when they are bound to a wand.*/
+ /** [Server-only] Whether spell books are consumed when they are bound to a wand. Does not affect scrolls.*/
public boolean singleUseSpellBooks = false;
/** [Server-only] Whether to prevent binding the same spell to a wand multiple times*/
public boolean preventBindingSameSpellTwiceToWands = false;
@@ -723,7 +723,7 @@ public final class Settings {
propOrder.add(property.getName());
property = config.get(GAMEPLAY_CATEGORY, "singleUseSpellBooks", false,
- "Whether spell books are consumed when they are bound to a wand.");
+ "Whether spell books are consumed when they are bound to a wand. This does not affect scrolls, which cannot be placed in the arcane workbench.");
property.setLanguageKey("config." + Wizardry.MODID + ".single_use_spell_books");
Wizardry.proxy.setToNamedBooleanEntry(property);
singleUseSpellBooks = property.getBoolean();