Skip to content
Snippets Groups Projects
Commit 95a03e3f authored by unrein's avatar unrein
Browse files

bugfixed alerting for corruption level

parent 4f99c632
Branches
No related tags found
No related merge requests found
......@@ -160,7 +160,6 @@ class FireballDamageConsumable(Consumable):
duration=0.8 # Total duration of the explosion
)
self.engine.animation_manager.add_animation(explosion)
self.engine.shake_heavy()
# Apply damage and display messages after the animation
for actor in actors_snapshot:
......@@ -216,7 +215,6 @@ class FireDamageConsumable(Consumable):
duration=0.6
)
self.engine.animation_manager.add_animation(explosion)
self.engine.shake_medium()
# Apply damage and display messages after the animation
self.engine.message_log.add_message(
......@@ -261,7 +259,6 @@ class PoisonDamageConsumable(Consumable):
duration=0.6
)
self.engine.animation_manager.add_animation(explosion)
self.engine.shake_light()
# Apply damage and display messages after the animation
self.engine.message_log.add_message(
......@@ -307,7 +304,6 @@ class BleedExplosionDamageConsumable(Consumable):
duration=0.8
)
self.engine.animation_manager.add_animation(explosion)
self.engine.shake_light()
targets_hit = False
for actor in actors_snapshot:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment