From: Rudolf Polzer Date: Fri, 19 Aug 2011 04:43:29 +0000 (+0200) Subject: don't remove a func_plat just because blocked got called at the wrong time X-Git-Tag: xonotic-v0.5.0~110^2~5 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=28b2f36c352978f855bb8d343a37f0b3d70ed9bb;p=xonotic%2Fxonotic-data.pk3dir.git don't remove a func_plat just because blocked got called at the wrong time --- diff --git a/qcsrc/server/t_plats.qc b/qcsrc/server/t_plats.qc index e2d801fa4..ca87ede22 100644 --- a/qcsrc/server/t_plats.qc +++ b/qcsrc/server/t_plats.qc @@ -140,8 +140,9 @@ void plat_crush() plat_go_down (); else if (self.state == 3) plat_go_up (); - else - objerror ("plat_crush: bad self.state\n"); + // when in other states, then the plat_crush event came delayed after + // plat state already had changed + // this isn't a bug per se! } };