Fixing loot tables

This commit is contained in:
DaanV2
2021-01-27 01:57:16 +01:00
parent 42a97956bb
commit d0c41a949e
3 changed files with 41 additions and 8 deletions

View File

@@ -13,18 +13,19 @@
},
"damage": {
"oneOf": [
{ "type": "integer" },
{
"type": "integer"
"type": "object",
"properties": {
"min": { "type": "integer" },
"max": { "type": "integer" }
}
},
{
"type": "object",
"properties": {
"min": {
"type": "integer"
},
"max": {
"type": "integer"
}
"min": { "type": "number" },
"max": { "type": "number" }
}
}
],