summaryrefslogtreecommitdiff
path: root/src/game/effects.cpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2017-12-16 22:41:48 +0000
committerPaweł Redman <pawel.redman@gmail.com>2017-12-16 22:41:48 +0000
commit38edebe4bdeb8caedccf6127a86fddfe9c5808a8 (patch)
tree466cf659201a66a12d922943337e636b5125bccb /src/game/effects.cpp
parent5c7d962e605e123e1ce4e0610e8f330b1f4f5e82 (diff)
Fully working nests.
Diffstat (limited to 'src/game/effects.cpp')
-rw-r--r--src/game/effects.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/effects.cpp b/src/game/effects.cpp
index 8e7d2d7..844f365 100644
--- a/src/game/effects.cpp
+++ b/src/game/effects.cpp
@@ -4,7 +4,8 @@ namespace game {
effect_t::effect_t(state_t *game_) : game::entity_t(game_, ET_EFFECT)
{
- always_awake = true;
+ ignore_waking = true;
+ wake();
}
void effect_t::on_think(void)