From fa52bb4192e535b61326c49212b4813f05a96113 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 16 Aug 2014 13:19:00 +0200 Subject: [PATCH] pointless assert triggers when new units are created and placed. spawning dragons was causing this to fail. --- src/kernel/unit.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/kernel/unit.c b/src/kernel/unit.c index 967ff5db5..716852651 100644 --- a/src/kernel/unit.c +++ b/src/kernel/unit.c @@ -890,7 +890,6 @@ void move_unit(unit * u, region * r, unit ** ulist) { assert(u && r); - assert(u->faction || !"this unit is dead"); if (u->region == r) return; if (!ulist)