Skip to content

Commit

Permalink
Fix copper durability being too high
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMiner committed Dec 17, 2022
1 parent c007fb8 commit b89b0c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"attack": 0.5
},
"tconstruct:limb": {
"durability": 2120,
"durability": 210,
"drawSpeed": -0.1,
"velocity": 0.05,
"accuracy": 0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ private void addRanged() {
new LimbMaterialStats(100, 0.05f, -0.05f, 0.05f),
new GripMaterialStats(0.75f, 0.05f, 1.25f));
addMaterialStats(MaterialIds.copper,
new LimbMaterialStats(2120, -0.10f, 0.05f, 0f),
new LimbMaterialStats(210, -0.10f, 0.05f, 0f),
new GripMaterialStats(0.8f, 0f, 0.5f));
addMaterialStats(MaterialIds.chorus,
new LimbMaterialStats(180, 0.1f, 0f, 0.1f),
Expand Down

0 comments on commit b89b0c1

Please sign in to comment.