summaryrefslogtreecommitdiff
path: root/src/creature.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/creature.cpp')
-rw-r--r--src/creature.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/creature.cpp b/src/creature.cpp
index 5c3bb8e..dcc8337 100644
--- a/src/creature.cpp
+++ b/src/creature.cpp
@@ -14,7 +14,7 @@ Creature::Creature(Window m, std::string s) //Constructor
void Creature::Behavior()
{
- health--; //Decrements health each time a behavior is executed
+ health-=5; //Decrements health each time a behavior is executed
this->Priority(); //Checks which action has priority (doesn't really do this right now)
this->Action(); //Does action
}