From 4652d6c7e4033d5f64f41a3fcbae4924f26d723a Mon Sep 17 00:00:00 2001 From: Steve Date: Sun, 10 Apr 2016 08:23:59 +0100 Subject: [PATCH] Lowered component health. --- src/battle/jumpgate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/battle/jumpgate.c b/src/battle/jumpgate.c index c1b379c..adc41b4 100644 --- a/src/battle/jumpgate.c +++ b/src/battle/jumpgate.c @@ -64,7 +64,7 @@ static void addNodes(Entity *jumpgate, long flags) { node = spawnEntity(); STRNCPY(node->name, _("Jumpgate System Node"), MAX_NAME_LENGTH); - node->health = node->maxHealth = 75; + node->health = node->maxHealth = 25; node->type = ET_COMPONENT; node->offsetX = sin(TO_RAIDANS(i)) * 215; node->offsetY = -cos(TO_RAIDANS(i)) * 215;