From: Mario Date: Sun, 9 Sep 2018 13:20:16 +0000 (+1000) Subject: Don't spam an activation warning on old maps X-Git-Tag: xonotic-v0.8.5~1891 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ca91a7a3714417b62f4a2d87039b1338e0a4b2a2;p=xonotic%2Fxonotic-data.pk3dir.git Don't spam an activation warning on old maps --- diff --git a/qcsrc/common/mapobjects/triggers.qc b/qcsrc/common/mapobjects/triggers.qc index 6968a6556..c7ed6643d 100644 --- a/qcsrc/common/mapobjects/triggers.qc +++ b/qcsrc/common/mapobjects/triggers.qc @@ -79,7 +79,7 @@ void generic_netlinked_reset(entity this) // Compatibility with old maps void generic_netlinked_legacy_use(entity this, entity actor, entity trigger) { - LOG_WARNF("Entity %s was (de)activated by a trigger, please update map to use relays", this.targetname); + //LOG_WARNF("Entity %s was (de)activated by a trigger, please update map to use relays", this.targetname); this.setactive(this, ACTIVE_TOGGLE); }