Updating interact

This commit is contained in:
DaanV2
2024-04-20 12:31:26 +02:00
parent 8ab255eb28
commit fe2a7cc70b
2 changed files with 7 additions and 7 deletions

View File

@@ -157,15 +157,15 @@
}, },
"drop_item_slot": { "drop_item_slot": {
"title": "Drop Item Slot", "title": "Drop Item Slot",
"type": "integer", "type": "string",
"default": -1, "description": "The entity's equipment slot to remove and drop the item from, if any, upon successful interaction.",
"description": "The entity's equipment slot to remove and drop the item from, if any, upon successful interaction." "enum": ["slot.armor.head", "slot.armor.chest", "slot.armor.legs", "slot.armor.feet"]
}, },
"equip_item_slot": { "equip_item_slot": {
"title": "Equip Item Slot", "title": "Equip Item Slot",
"type": "integer", "type": "string",
"default": -1, "description": "The entity's slot to equip the item to, if any, upon successful interaction. Inventory slots are denoted by positive numbers.",
"description": "The entity's equipment slot to equip the item to, if any, upon successful interaction." "enum": ["slot.armor.head", "slot.armor.chest", "slot.armor.legs", "slot.armor.feet"]
} }
} }
} }

View File

@@ -188,7 +188,7 @@
}, },
"spawn_category": { "spawn_category": {
"type": "string", "type": "string",
"enum": ["monster", "creature", "ambient", "axoltols", "underground_water_creature", "water_creature", "water_ambient", "misc"], "enum": ["monster", "creature", "ambient", "axolotls", "underground_water_creature", "water_creature", "water_ambient", "misc"],
"description": "At the moment, not fully implemented and does nothing. Recommended to leave it empty or set it to misc", "description": "At the moment, not fully implemented and does nothing. Recommended to leave it empty or set it to misc",
"default": "misc" "default": "misc"
} }