mirror of
https://github.com/yquake2/rogue.git
synced 2025-04-20 09:10:49 +00:00
Merge pull request #81 from BjossiAlfreds/map-fixes
Map fixes for some rogue maps
This commit is contained in:
commit
46362a3bb4
4 changed files with 21863 additions and 0 deletions
|
@ -330,6 +330,13 @@ G_UseTargets(edict_t *ent, edict_t *activator)
|
|||
}
|
||||
}
|
||||
|
||||
/* correct killcounter if a living monster gets killtargeted */
|
||||
if ((t->monsterinfo.checkattack || strcmp (t->classname, "turret_driver") == 0) &&
|
||||
!(t->monsterinfo.aiflags & (AI_GOOD_GUY|AI_DO_NOT_COUNT)) && t->deadflag != DEAD_DEAD)
|
||||
{
|
||||
level.killed_monsters++;
|
||||
}
|
||||
|
||||
G_FreeEdict(t);
|
||||
|
||||
if (!ent->inuse)
|
||||
|
|
6123
stuff/mapfixes/rammo1.ent
Normal file
6123
stuff/mapfixes/rammo1.ent
Normal file
File diff suppressed because it is too large
Load diff
7423
stuff/mapfixes/rhangar2.ent
Normal file
7423
stuff/mapfixes/rhangar2.ent
Normal file
File diff suppressed because it is too large
Load diff
8310
stuff/mapfixes/rware2.ent
Normal file
8310
stuff/mapfixes/rware2.ent
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue