diff options
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index 6a8dad8..3455b0e 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -150,10 +150,11 @@ static std::vector<entityx::Entity::Id> savedEntities; void WorldSystem::fight(entityx::Entity entity) { + UserError("fights unimplemented?"); std::string exit = currentXMLFile; savedEntities.emplace_back(entity.id()); - load(entity.component<Aggro>()->arena); + //load(entity.component<Aggro>()->arena); savedEntities.clear(); entity.component<Health>()->health = entity.component<Health>()->maxHealth; |