From: Nick S Date: Thu, 27 Jan 2022 15:49:29 +0000 (+0200) Subject: Do not crash when crylink spike is attempted to be removed X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=aa667e7f37a3139965cf20382989b243c42695e6;p=xonotic%2Fxonotic-data.pk3dir.git Do not crash when crylink spike is attempted to be removed --- diff --git a/qcsrc/server/main.qc b/qcsrc/server/main.qc index 2b29422b8..5f560022e 100644 --- a/qcsrc/server/main.qc +++ b/qcsrc/server/main.qc @@ -248,7 +248,7 @@ void remove_except_protected(entity e) void remove_unsafely(entity e) { if(e.classname == "spike") - error("Removing spikes is forbidden (crylink bug), please report"); + LOG_WARN("Removing spikes is forbidden (crylink bug), please report"); builtin_remove(e); }