All hail the whitespace shambler!

This commit is contained in:
Ragnvald Maartmann-Moe IV 2003-08-27 23:43:13 +00:00
parent 78e1059007
commit 20adb3530f
7 changed files with 49 additions and 55 deletions

View file

@ -77,7 +77,7 @@ multi_trigger =
self.nextthink = time + self.wait;
} else {
// we can't just remove (self) here, because this is a touch function
// called wheil C code is looping through area links...
// called while C code is looping through area links...
self.touch = SUB_Null;
self.nextthink = time + 0.1;
self.think = SUB_Remove;
@ -110,7 +110,7 @@ multi_touch =
if (v_forward * self.movedir < 0)
return; // not facing the right way
}
self.enemy = other;
multi_trigger ();
};
@ -368,7 +368,7 @@ spawn_tdeath =
death.nextthink = time + 0.1;
death.think = SUB_Remove;
death.owner = death_owner;
force_retouch = 2; // make sure even still objects get hit
};