mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 20:01:34 +00:00
SERVER: Don't assume being in a water brush means you're not on the ground
This commit is contained in:
parent
5333722dec
commit
152ccb40dd
1 changed files with 1 additions and 2 deletions
|
@ -747,8 +747,7 @@ void(float dist) Zombie_Walk = {
|
||||||
self.velocity_y = 0;
|
self.velocity_y = 0;
|
||||||
//self.flags = self.flags | FL_PARTIALGROUND;
|
//self.flags = self.flags | FL_PARTIALGROUND;
|
||||||
|
|
||||||
//check_onfire();
|
if (!(self.flags & FL_ONGROUND) && self.watertype != CONTENT_WATER) {
|
||||||
if (!(self.flags & FL_ONGROUND)) {
|
|
||||||
|
|
||||||
if (!self.droptime) {
|
if (!self.droptime) {
|
||||||
self.droptime = time + 1;
|
self.droptime = time + 1;
|
||||||
|
|
Loading…
Reference in a new issue