From f9adb8d8b844d17c1a1bb21f3aa778985fe2d6ff Mon Sep 17 00:00:00 2001 From: Steve Date: Sun, 4 Mar 2018 17:04:13 +0000 Subject: [PATCH] Crush faster. --- src/world/entities.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/entities.c b/src/world/entities.c index 83941d7..a748ce8 100644 --- a/src/world/entities.c +++ b/src/world/entities.c @@ -260,7 +260,7 @@ void doEntities(void) if (e->flags & EF_CRUSHABLE) { - e->health--; + e->health *= 0.5; } }