mirror of
https://github.com/nzp-team/quakec.git
synced 2025-01-31 13:40:52 +00:00
SERVER: Hack-in down-pointed zapper pylons
This commit is contained in:
parent
59a880ce09
commit
ee33ac4a29
1 changed files with 7 additions and 1 deletions
|
@ -296,7 +296,13 @@ void() zapper_node =
|
|||
setorigin(self, self.origin);
|
||||
setmodel(self, self.model);
|
||||
makevectors(self.angles);
|
||||
setsize (self, '-20 -20 -4', '20 20 0' + (v_up * 100));
|
||||
|
||||
if (self.angles_z == 180) {
|
||||
setsize (self, '-20 -20 -80', '20 20 4');
|
||||
} else {
|
||||
setsize (self, '-20 -20 -4', '20 20 80');
|
||||
}
|
||||
|
||||
self.movetype = MOVETYPE_NONE;
|
||||
self.classname = "zapper_node";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue