Skip to content

Commit

Permalink
fix: corrected the weight of the items
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpredator committed Nov 12, 2023
1 parent 772713d commit 66f92a6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@
14. [BOBHunt]: refactor: code cleaning, various corrections to the code as well as license updates @bitpredator
15. [BOBHunt]: refactor: supports all translations natively @bitpredator
16. [SQL]: chore: removed white strings inside some sql @bitpredator
17. [esx_addoninventory]: delete: removed the .editorconfig file @bitpredator
17. [esx_addoninventory]: delete: removed the .editorconfig file @bitpredator
18. [ox_inventory]: fix: corrected the weight of the items @bitpredator
13 changes: 10 additions & 3 deletions server-data/resources/[ox]/ox_inventory/data/items.lua
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ return {

['boar_meat'] = {
label = 'carne di cinghiale',
weight = 3000,
weight = 500,
stack = true,
},

Expand All @@ -470,7 +470,7 @@ return {

['deer_meat'] = {
label = 'carne di cervo',
weight = 3000,
weight = 500,
stack = true,
},

Expand All @@ -488,7 +488,7 @@ return {

['gunpowder'] = {
label = 'polvere da sparo',
weight = 500,
weight = 100,
stack = true,
},

Expand Down Expand Up @@ -570,4 +570,11 @@ return {
stack = true,
consume = 1,
},

["medikit"] = {
label = "Medikit",
weight = 2,
stack = true,
close = true,
},
}

0 comments on commit 66f92a6

Please sign in to comment.