diff options
author | SilverSokolova <80606782+SilverSokolova@users.noreply.github.com> | 2024-12-18 01:50:23 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-18 01:50:23 -0600 |
commit | 79e2c90ee058c96e564c8c19af43f6114546d787 (patch) | |
tree | 2e72d191ff138e1a4b1d0c0f77adec16fc9dfc81 /source/frontend | |
parent | 476bdc619c6e9bc68307b5be7ff6c4dd2762bf63 (diff) |
Update StarCraftingInterface.cpp
Diffstat (limited to 'source/frontend')
-rw-r--r-- | source/frontend/StarCraftingInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/frontend/StarCraftingInterface.cpp b/source/frontend/StarCraftingInterface.cpp index f1c136d..c44ad2b 100644 --- a/source/frontend/StarCraftingInterface.cpp +++ b/source/frontend/StarCraftingInterface.cpp @@ -42,7 +42,7 @@ CraftingPane::CraftingPane(WorldClientPtr worldClient, PlayerPtr player, Json co jsonMerge(assets->fetchJson(baseConfig), settings)); m_filter = StringSet::from(jsonToStringList(m_settings.get("filter", JsonArray()))); - m_maxSpinCount = m_settings.getInt("maxSpinCount", 1000); + m_maxSpinCount = m_settings.getUInt("maxSpinCount", 1000); GuiReader reader; reader.registerCallback("spinCount.up", [=](Widget*) { |