Skip to content

Commit b7843d6

Browse files
authored
Merge pull request #446 from DrJacobHolden/fix-drop-tables
Fix incorrect drop table definitions
2 parents 1761e91 + ef2c7ad commit b7843d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

data/config/npcs/generic-humans.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"death": 512
2323
},
2424
"drop_table": [
25-
[ "rs:bones", "always", 1 ],
26-
[ "rs:bronze_dagger", "1/128", 1, 12 ]
25+
{ "itemKey": "rs:bones", "frequency": "always", "amount": 1 },
26+
{ "itemKey": "rs:bronze_dagger", "frequency": "1/128", "amount": 1 }
2727
]
2828
}
2929
},

data/config/npcs/goblins.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"death": 313
2929
},
3030
"drop_table": [
31-
[ "rs:bones", "always", 1 ]
31+
{ "itemKey": "rs:bones", "frequency": "always", "amount": 1 }
3232
]
3333
}
3434
},

0 commit comments

Comments
 (0)