mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-24 21:02:14 +00:00
Server: Target player when running god
This commit is contained in:
parent
f11f58b84d
commit
0ccb6357f0
1 changed files with 19 additions and 7 deletions
|
@ -733,6 +733,24 @@ void(string com) SV_ParseClientCommand =
|
||||||
self = benis;
|
self = benis;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
else if (com == "god")
|
||||||
|
{
|
||||||
|
#ifndef PC
|
||||||
|
entity benis2 = self;
|
||||||
|
other = find(world, classname, "player");
|
||||||
|
self = other;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (!(self.flags & FL_GODMODE))
|
||||||
|
self.flags = self.flags | FL_GODMODE;
|
||||||
|
else
|
||||||
|
self.flags = self.flags & (~FL_GODMODE);
|
||||||
|
|
||||||
|
#ifndef PC
|
||||||
|
localcmd(com);
|
||||||
|
self = benis2;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
tokenize(com);
|
tokenize(com);
|
||||||
|
@ -777,13 +795,7 @@ void(string com) SV_ParseClientCommand =
|
||||||
self.Weapon_Name = GetWeaponName(self.weapon);
|
self.Weapon_Name = GetWeaponName(self.weapon);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "god":
|
|
||||||
if (!(self.flags & FL_GODMODE))
|
|
||||||
self.flags = self.flags | FL_GODMODE;
|
|
||||||
else
|
|
||||||
self.flags = self.flags & (~FL_GODMODE);
|
|
||||||
break;
|
|
||||||
case "nextround":
|
case "nextround":
|
||||||
rounds++;
|
rounds++;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue