Fixed some small warnings.
This commit is contained in:
parent
5ba72a224c
commit
5055fc8879
3 changed files with 4 additions and 2 deletions
|
@ -147,7 +147,7 @@ Footsteps_Update(void)
|
|||
}
|
||||
|
||||
/* make it so we step once we land */
|
||||
if (!self.flags & FL_ONGROUND) {
|
||||
if (!(self.flags & FL_ONGROUND)) {
|
||||
self.fStepTime = 0.0f;
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -66,6 +66,8 @@ Sentences_Init(void)
|
|||
|
||||
g_sentences[x] = strcat("!", argv(0));
|
||||
}
|
||||
|
||||
fclose(fs_sentences);
|
||||
}
|
||||
|
||||
string
|
||||
|
|
|
@ -58,7 +58,7 @@ monster_tripmine::SendEntity(entity pvsent, float flags)
|
|||
void
|
||||
monster_tripmine::Trip(int walkthrough)
|
||||
{
|
||||
float dmg
|
||||
float dmg;
|
||||
if (!walkthrough) {
|
||||
real_owner = g_eAttacker;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue