diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-17 08:44:01 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-17 08:44:01 -0400 |
commit | 04369f067b8ab5b674a55467cc4dad98a9359273 (patch) | |
tree | 3446ca7a729a4f59f92fa9a7675ae9fe217ce945 /src/entities.cpp | |
parent | 3c51eb91645fb9ab6e6cbe49b354408a6e77d1d1 (diff) |
better mob combat stuff
Diffstat (limited to 'src/entities.cpp')
-rw-r--r-- | src/entities.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index ff8dd5d..c3c580c 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -117,7 +117,7 @@ void Entity::spawn(float x, float y) // generate a name name = new char[32]; if (type == MOBT) - name[0] = '\0'; + strncpy(name, "mob", 3); else randGetomName(this); @@ -127,7 +127,6 @@ void Entity::spawn(float x, float y) void Entity::takeHit(unsigned int _health, unsigned int cooldown) { if (hitCooldown <= 1) { - std::cout << "Taking hit " << std::endl; // modify variables health = fmax(health - _health, 0); forcedMove = true; |