From ef2c7adfe9f53e0dce25d93fc81115a6aa1f4d70 Mon Sep 17 00:00:00 2001 From: Borig Date: Sat, 1 Feb 2025 12:50:54 +1300 Subject: [PATCH] Fix incorrect drop table definitions --- data/config/npcs/generic-humans.json | 4 ++-- data/config/npcs/goblins.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/config/npcs/generic-humans.json b/data/config/npcs/generic-humans.json index 88dd1c704..b36598115 100644 --- a/data/config/npcs/generic-humans.json +++ b/data/config/npcs/generic-humans.json @@ -22,8 +22,8 @@ "death": 512 }, "drop_table": [ - [ "rs:bones", "always", 1 ], - [ "rs:bronze_dagger", "1/128", 1, 12 ] + { "itemKey": "rs:bones", "frequency": "always", "amount": 1 }, + { "itemKey": "rs:bronze_dagger", "frequency": "1/128", "amount": 1 } ] } }, diff --git a/data/config/npcs/goblins.json b/data/config/npcs/goblins.json index c7a92208b..97710c4bb 100644 --- a/data/config/npcs/goblins.json +++ b/data/config/npcs/goblins.json @@ -28,7 +28,7 @@ "death": 313 }, "drop_table": [ - [ "rs:bones", "always", 1 ] + { "itemKey": "rs:bones", "frequency": "always", "amount": 1 } ] } },