diff --git a/demo_config/config/masterful_machinery/controllers/basic.json b/demo_config/config/masterful_machinery/controllers/basic.json index f0501c9..06f88e9 100644 --- a/demo_config/config/masterful_machinery/controllers/basic.json +++ b/demo_config/config/masterful_machinery/controllers/basic.json @@ -59,7 +59,7 @@ "name": "Rotation", "id": "simple", "data": { - "stress": 1 + "stress": 32 } }, { diff --git a/demo_config/config/masterful_machinery/controllers/mid.json b/demo_config/config/masterful_machinery/controllers/mid.json index a0fffa5..589aa7c 100644 --- a/demo_config/config/masterful_machinery/controllers/mid.json +++ b/demo_config/config/masterful_machinery/controllers/mid.json @@ -65,7 +65,7 @@ "name": "Rotation", "id": "intermediate", "data": { - "stress": 3 + "stress": 128 } }, { diff --git a/src/main/java/com/ticticboooom/mods/mm/client/jei/category/MachineStructureRecipeCategory.java b/src/main/java/com/ticticboooom/mods/mm/client/jei/category/MachineStructureRecipeCategory.java index ce96ecc..33f4ac5 100644 --- a/src/main/java/com/ticticboooom/mods/mm/client/jei/category/MachineStructureRecipeCategory.java +++ b/src/main/java/com/ticticboooom/mods/mm/client/jei/category/MachineStructureRecipeCategory.java @@ -137,19 +137,19 @@ public class MachineStructureRecipeCategory implements IRecipeCategory reg : MMLoader.BLOCKS) { if (reg.get().getControllerId().equals(controller)) { diff --git a/src/test/resources/data/mm/recipes/test_rotation.json b/src/test/resources/data/mm/recipes/test_rotation.json index 1e17f58..4d8b5e7 100644 --- a/src/test/resources/data/mm/recipes/test_rotation.json +++ b/src/test/resources/data/mm/recipes/test_rotation.json @@ -1,22 +1,22 @@ { - "type": "masterfulmachinery:machine_process", - "structureId": "test_rotation", - "controllerId": "basic", - "ticks": 200, - "inputs": [ - { - "type": "masterfulmachinery:create_rotation", - "data": { - "speed": 2 - } - } - ], - "outputs":[ - { - "type": "masterfulmachinery:create_rotation", - "data": { - "speed": 4 - } - } - ] + "type": "masterfulmachinery:machine_process", + "structureId": "test_rotation", + "controllerId": "basic", + "perTick": true, + "inputs": [ + { + "type": "masterfulmachinery:create_rotation", + "data": { + "speed": 2 + } + } + ], + "outputs": [ + { + "type": "masterfulmachinery:create_rotation", + "data": { + "speed": 64 + } + } + ] } \ No newline at end of file diff --git a/version.properties b/version.properties index b862fc5..070fb19 100644 --- a/version.properties +++ b/version.properties @@ -1,2 +1,2 @@ -#Tue Sep 28 18:52:49 BST 2021 -VERSION_CODE=785 +#Wed Sep 29 10:53:26 BST 2021 +VERSION_CODE=790