Skip to content

Commit

Permalink
Default stacksize is 120
Browse files Browse the repository at this point in the history
  • Loading branch information
careeoki authored and IntegratedQuantum committed Jan 31, 2025
1 parent 3d16252 commit b6dc901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/items.zig
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub const BaseItem = struct { // MARK: BaseItem
};
}
self.name = allocator.dupe(u8, zon.get([]const u8, "name", id));
self.stackSize = zon.get(u16, "stackSize", 64);
self.stackSize = zon.get(u16, "stackSize", 120);
const material = zon.getChild("material");
if(material == .object) {
self.material = Material{};
Expand Down

0 comments on commit b6dc901

Please sign in to comment.