From 46f7df7b5fa757f92e62c23022a1a6719c925b1d Mon Sep 17 00:00:00 2001 From: StealthyX Date: Mon, 20 Mar 2023 06:38:08 -0400 Subject: [PATCH] Updated int_property.json so the value type. (#167) Updated int_property.json so the value type is "integer" instead of "string" --- .../entities/filters/filters/int_property.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/behavior/entities/filters/filters/int_property.json b/source/behavior/entities/filters/filters/int_property.json index 023cfffe..f5725df4 100644 --- a/source/behavior/entities/filters/filters/int_property.json +++ b/source/behavior/entities/filters/filters/int_property.json @@ -2,14 +2,14 @@ "$id": "blockception.minecraft.behavior.entities.filters.int_property", "type": "object", "title": "Int Property", - "description": "Returns true when the int actor property matches the value provided.", + "description": "Returns true when the integer actor property matches the value provided.", "required": ["value", "domain"], - "examples": [{ "test": "bool_property", "value": true }], + "examples": [{ "test": "int_property", "value": 1 }], "properties": { "test": { "type": "string", "title": "Test Property", - "description": "Returns true when the int actor property matches the value provided." + "description": "Returns true when the integer actor property matches the value provided." }, "domain": { "description": "(Required) The property name to look for", @@ -29,9 +29,9 @@ "title": "Subject" }, "value": { - "type": "string", + "type": "integer", "title": "Value", - "description": "(Required) A floating point value." + "description": "(Required) A integer value." } } }