]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Allow hidden monsters with the allow_any flag (passive monsters are always excluded...
authorMario <mario@smbclan.net>
Thu, 12 Apr 2018 15:09:13 +0000 (01:09 +1000)
committerMario <mario@smbclan.net>
Thu, 12 Apr 2018 15:09:13 +0000 (01:09 +1000)
qcsrc/common/monsters/sv_spawn.qc

index c2d6fd3f4e72bfccf3144c1019eef0af1d8612d4..d456282d429ee6fbc6c5113f90b7f57484b8fcff 100644 (file)
@@ -21,7 +21,7 @@ entity spawnmonster (entity e, string monster, int monster_id, entity spawnedby,
        if(monster == "random" || allow_any)
        {
                RandomSelection_Init();
-               FOREACH(Monsters, it != MON_Null && (allow_any || !(it.spawnflags & MONSTER_TYPE_PASSIVE)) && !(it.spawnflags & MON_FLAG_HIDDEN),
+               FOREACH(Monsters, it != MON_Null && (allow_any || !(it.spawnflags & MON_FLAG_HIDDEN)) && !(it.spawnflags & MONSTER_TYPE_PASSIVE),
                {
                        RandomSelection_AddEnt(it, 1, 1);
                });