Skip to content

Commit

Permalink
refactor: adjust for restructured Health v2.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
- bump version for Health to 2.0.0-SNAPSHOT
- adjust imports (auto-refactoring done by IntelliJ)

Depends on Terasology/Health#78
  • Loading branch information
skaldarnar committed Apr 17, 2021
1 parent 6a2b97c commit 0300c00
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions module.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"id": "PhysicalStats",
"version": "1.1.0-SNAPSHOT",
"author": "XTariq",
"displayName": "PhysicalStats",
"description": "Adds a basic RPG stat system for seven physical attributes or stats.",
"dependencies": [
{
"id": "Health",
"minVersion": "1.0.0"
}
],
"serverSideOnly": false,
"isLibrary": true
"id": "PhysicalStats",
"version": "1.1.0-SNAPSHOT",
"author": "XTariq",
"displayName": "PhysicalStats",
"description": "Adds a basic RPG stat system for seven physical attributes or stats.",
"dependencies": [
{
"id": "Health",
"minVersion": "2.0.0-SNAPSHOT"
}
],
"serverSideOnly": false,
"isLibrary": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
import org.terasology.engine.entitySystem.systems.BaseComponentSystem;
import org.terasology.engine.entitySystem.systems.RegisterSystem;
import org.terasology.engine.logic.characters.GetMaxSpeedEvent;
import org.terasology.logic.health.HealthComponent;
import org.terasology.logic.health.event.BeforeDamagedEvent;
import org.terasology.module.health.components.HealthComponent;
import org.terasology.module.health.events.BeforeDamagedEvent;
import org.terasology.engine.logic.players.event.OnPlayerSpawnedEvent;
import org.terasology.engine.registry.In;
import org.terasology.physicalstats.component.PhysicalStatsComponent;
Expand Down

0 comments on commit 0300c00

Please sign in to comment.