From 226bae411b83d851d5b30e0b0fa28a68bb8e7040 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 14 Jun 2017 17:29:21 -0400 Subject: enemy flash red! --- src/systems/dialog.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/systems/dialog.cpp') 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()) - e.remove(); - e.assign(Color(0, 255, 255)); + e.replace(Color(0, 255, 255)); if (!dialogRun.load()) { // copy entity, windows destroys the original after thread detach -- cgit v1.2.3