Skip to content

Commit

Permalink
Increase the size of the set of clothes pocket
Browse files Browse the repository at this point in the history
When the set of clothes is limited to only 100 L and 100 kg, issues may
easily arise when wearing a lot of objects with lots of volume among
them, which has the potential to not let everything being worn be
inserted into the set of clothes, and potential loss of items when the
input volume or weight is larger than the limit during json verification
on save loading was bad.
  • Loading branch information
TheAthenaCabin0 committed May 21, 2024
1 parent 2c2579f commit 6218a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/json/items/containers/generic.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@
"pocket_data": [
{
"pocket_type": "CONTAINER",
"max_contains_volume": "100 L",
"max_contains_weight": "100 kg",
"max_contains_volume": "1000 L",
"max_contains_weight": "1000 kg",
"rigid": false,
"moves": 1000
}
Expand Down

0 comments on commit 6218a51

Please sign in to comment.