From 65cb662678c29c0d66e817a0d77a18e516994cf8 Mon Sep 17 00:00:00 2001 From: Gaerzi Date: Tue, 28 Oct 2014 21:19:01 +0100 Subject: [PATCH] Missing break in case NAME_FillColor This caused weirdness with invulnerable monsters when their fillcolor was changed. --- src/p_udmf.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p_udmf.cpp b/src/p_udmf.cpp index 6af777b36..926e65dcc 100644 --- a/src/p_udmf.cpp +++ b/src/p_udmf.cpp @@ -690,6 +690,7 @@ public: case NAME_FillColor: th->fillcolor = CheckInt(key); + break; case NAME_Health: th->health = CheckInt(key);