diff --git a/module.txt b/module.txt index 0755bd8..d5f8940 100644 --- a/module.txt +++ b/module.txt @@ -1,28 +1,28 @@ { - "id": "Scenario", - "version": "1.1.0-SNAPSHOT", - "author": "Cata", - "displayName": "Scenario", - "description": "The Scenario module allows for creations of scenarios, which are \"static worlds\" with logic attached to them.", - "dependencies": [ - { - "id": "CoreAssets", - "minVersion": "2.0.1" - }, - { - "id": "Health", - "minVersion": "1.0.0" - }, - { - "id": "Inventory", - "minVersion": "1.1.0" - }, - { - "id": "StructureTemplates", - "minVersion": "1.0.0" - } - ], - "serverSideOnly": false, - "isAugmentation": true, - "isSpecial": true + "id": "Scenario", + "version": "1.1.0-SNAPSHOT", + "author": "Cata", + "displayName": "Scenario", + "description": "The Scenario module allows for creations of scenarios, which are \"static worlds\" with logic attached to them.", + "dependencies": [ + { + "id": "CoreAssets", + "minVersion": "2.0.1" + }, + { + "id": "Health", + "minVersion": "2.0.0-SNAPSHOT" + }, + { + "id": "Inventory", + "minVersion": "1.1.0" + }, + { + "id": "StructureTemplates", + "minVersion": "1.0.0" + } + ], + "serverSideOnly": false, + "isAugmentation": true, + "isSpecial": true } diff --git a/src/main/java/org/terasology/scenario/internal/systems/ActionEventSystem.java b/src/main/java/org/terasology/scenario/internal/systems/ActionEventSystem.java index b4c7360..a3eca2c 100644 --- a/src/main/java/org/terasology/scenario/internal/systems/ActionEventSystem.java +++ b/src/main/java/org/terasology/scenario/internal/systems/ActionEventSystem.java @@ -29,8 +29,8 @@ import org.terasology.engine.logic.chat.ChatMessageEvent; import org.terasology.engine.logic.common.DisplayNameComponent; import org.terasology.engine.logic.health.EngineDamageTypes; -import org.terasology.logic.health.event.DoDamageEvent; -import org.terasology.logic.health.event.DoRestoreEvent; +import org.terasology.module.health.events.DoDamageEvent; +import org.terasology.module.health.events.DoRestoreEvent; import org.terasology.module.inventory.components.InventoryComponent; import org.terasology.module.inventory.systems.InventoryManager; import org.terasology.engine.logic.inventory.ItemComponent;