From 52d8fdbafd0afc915539410e21d92b7eb734d0ac Mon Sep 17 00:00:00 2001 From: Maikel de Vries Date: Fri, 16 Mar 2018 18:16:05 +0100 Subject: [PATCH] warn about deprecated use of base respawn rule --- planet/Objects.ocd/Rules.ocd/BaseRespawn.ocd/Script.c | 1 + 1 file changed, 1 insertion(+) diff --git a/planet/Objects.ocd/Rules.ocd/BaseRespawn.ocd/Script.c b/planet/Objects.ocd/Rules.ocd/BaseRespawn.ocd/Script.c index 5f92a00bf..020d9b32f 100644 --- a/planet/Objects.ocd/Rules.ocd/BaseRespawn.ocd/Script.c +++ b/planet/Objects.ocd/Rules.ocd/BaseRespawn.ocd/Script.c @@ -2,6 +2,7 @@ protected func Construction() { + DebugLog("WARNING: Rule_BaseRespawn is deprecated and will be removed in version 9.0, use Rule_Relaunch instead."); var relaunch_rule = GetRelaunchRule(); relaunch_rule->SetBaseRespawn(true); relaunch_rule->SetFreeCrew(false);