aboutsummaryrefslogtreecommitdiffstats
path: root/src/systems/dialog.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-06-14 17:29:21 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-06-14 17:29:21 -0400
commit226bae411b83d851d5b30e0b0fa28a68bb8e7040 (patch)
treefbe56ff6fa5b1841ebff6bc5ceda5511de7b3b8e /src/systems/dialog.cpp
parent316df0931c66e43e69f21bda28c77b9bdb1e8bca (diff)
enemy flash red!
Diffstat (limited to 'src/systems/dialog.cpp')
-rw-r--r--src/systems/dialog.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/systems/dialog.cpp b/src/systems/dialog.cpp
index 0be0acb..f818760 100644
--- a/src/systems/dialog.cpp
+++ b/src/systems/dialog.cpp
@@ -36,9 +36,7 @@ void DialogSystem::receive(const MouseClickEvent &mce)
if (((mce.position.x > pos.x) & (mce.position.x < pos.x + dim.width)) &&
((mce.position.y > pos.y) & (mce.position.y < pos.y + dim.height))) {
- if (e.has_component<Flash>())
- e.remove<Flash>();
- e.assign<Flash>(Color(0, 255, 255));
+ e.replace<Flash>(Color(0, 255, 255));
if (!dialogRun.load()) {
// copy entity, windows destroys the original after thread detach