-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Allows you to change any item's stack size. | ||
|
||
Requires owolib, recommended to use modmenu. | ||
|
||
Open the config screen/file (if not using through modmenu the file name should be items-stack-size-config.json5) and add the wanted item name to the items list and its stack size to the Max Stack Sizes list, an example of how the json would look, this is the json that used for the mod's icon: | ||
``` | ||
{ | ||
"items": [ | ||
"Potion", | ||
"Oak Boat", | ||
"Stone", | ||
"Diamond Sword" | ||
], | ||
"maxStackSizes": [ | ||
8, | ||
16, | ||
32, | ||
4 | ||
] | ||
} | ||
``` | ||
notice that after any change, such as adding/removing and item or changing a stack size the game must be restarted for the changes to take effect. | ||
|
||
This mod is intended to be used as client and server though it has limited compatibility for server only (it works only in survival and then some features may still not work). |