summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/being.cpp b/src/being.cpp
index e24dee21..843f7da6 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -718,34 +718,10 @@ void Being::logic()
if (mUsedTargetCursor)
mUsedTargetCursor->update(tick_time * 10);
- if (getType() == NPC)
- {
- for (int i = 0; i < VECTOREND_SPRITE; i++)
- {
- if (mSprites[i])
- printf("Has sprite %d\n", i);
- else
- printf("Has not sprite %d\n", i);
- }
- }
-
for (int i = 0; i < VECTOREND_SPRITE; i++)
{
if (mSprites[i])
mSprites[i]->update(tick_time * 10);
- }////
-
- if (getType() == NPC)
- {
- for (int i = 0; i < VECTOREND_SPRITE; i++)
- {
- if (mSprites[i])
- printf("Has sprite %d\n", i);
- else
- printf("Has not sprite %d\n", i);
- }
-
- assert(false);
}
// Restart status/particle effects, if needed
@@ -781,19 +757,6 @@ void Being::draw(Graphics *graphics, int offsetX, int offsetY) const
mSprites[i]->draw(graphics, px, py);
}
}
-
- if (getType() == NPC)
- {
- for (int i = 0; i < VECTOREND_SPRITE; i++)
- {
- if (mSprites[i])
- printf("Has sprite %d\n", i);
- else
- printf("Has not sprite %d\n", i);
- }
-
- assert(false);
- }
}
void Being::drawEmotion(Graphics *graphics, int offsetX, int offsetY)