diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-12-19 19:07:34 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-19 19:07:34 +1100 |
commit | 157eb7c1416cef650525321ff78ed98ff2ac9d77 (patch) | |
tree | 8549a5ac23fa7a6e9b22a1884b3493789e4761f7 /assets | |
parent | 7d98cc8e042fe2af1a5652a6106f5630f6faeaf8 (diff) | |
parent | 28a8b54f43f10fde8c09f6efe91d1c1b3b09d5d4 (diff) |
Merge pull request #155 from SilverSokolova/main
Allow buying/crafting more than 1000 items at once [skip ci]
Diffstat (limited to 'assets')
-rw-r--r-- | assets/opensb/interface/windowconfig/crafting.config.patch | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/assets/opensb/interface/windowconfig/crafting.config.patch b/assets/opensb/interface/windowconfig/crafting.config.patch index 0728507..9febcd4 100644 --- a/assets/opensb/interface/windowconfig/crafting.config.patch +++ b/assets/opensb/interface/windowconfig/crafting.config.patch @@ -4,7 +4,11 @@ // Disables the crafting timer if true. "disableTimer" : false, - // This is only used if the crafting timer is enabled. - // This is how many crafts are ran when the crafting timer wraps. - "craftCount" : 1 -} }
\ No newline at end of file + // This is only used if the crafting timer is enabled. + // This is how many crafts are ran when the crafting timer wraps. + "craftCount" : 1, + + // This is how many of any item can be crafted at once. + // This is also used by merchants. + "maxSpinCount" : 9999 +} } |