diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-07 12:19:37 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-07 12:19:37 -0700 |
commit | 53db43c9fd37c642bae49138b2e05a1de81ad1a7 (patch) | |
tree | a2825c38628495e298ca0da38fd92e489bcbf79d /src/effectmanager.cpp | |
parent | 1b8c088a48822641b53c2a304372471a128c2841 (diff) | |
download | mana-53db43c9fd37c642bae49138b2e05a1de81ad1a7.tar.gz mana-53db43c9fd37c642bae49138b2e05a1de81ad1a7.tar.bz2 mana-53db43c9fd37c642bae49138b2e05a1de81ad1a7.tar.xz mana-53db43c9fd37c642bae49138b2e05a1de81ad1a7.zip |
Removed some debug statements, as requested by KageJittai.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/effectmanager.cpp')
-rw-r--r-- | src/effectmanager.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/effectmanager.cpp b/src/effectmanager.cpp index cf77de37..63796f73 100644 --- a/src/effectmanager.cpp +++ b/src/effectmanager.cpp @@ -69,7 +69,6 @@ bool EffectManager::trigger(int id, Being* being) { if ((*i).id == id) { - printf("Found effect, playing it"); rValue = true; if((*i).GFX != "") { @@ -92,7 +91,6 @@ bool EffectManager::trigger(int id, int x, int y) { if ((*i).id == id) { - printf("Found effect, playing it"); rValue = true; if((*i).GFX != "") particleEngine->addEffect((*i).GFX, x, y); |