From 47ddf18555a2a1d2e1ca829375fceab5c0010bcf Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 30 Aug 2013 01:17:13 +1000 Subject: [PATCH] Add ogre spawn compatibility for brute --- qcsrc/common/monsters/monster/brute.qc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qcsrc/common/monsters/monster/brute.qc b/qcsrc/common/monsters/monster/brute.qc index 3f50e5d2d..1d5f6d518 100644 --- a/qcsrc/common/monsters/monster/brute.qc +++ b/qcsrc/common/monsters/monster/brute.qc @@ -201,6 +201,9 @@ void spawnfunc_monster_brute() if not(monster_initialize(MON_BRUTE, FALSE)) { remove(self); return; } } +// compatibility with old spawns +void spawnfunc_monster_ogre() { spawnfunc_monster_brute(); } + float m_brute(float req) { switch(req) -- 2.39.2