mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-25 13:21:30 +00:00
fix a missing break
This commit is contained in:
parent
432559543a
commit
e1715ca331
1 changed files with 1 additions and 0 deletions
|
@ -745,6 +745,7 @@ ammo_touch =
|
||||||
case 2: // spikes
|
case 2: // spikes
|
||||||
if (other.ammo_nails >= 200)
|
if (other.ammo_nails >= 200)
|
||||||
return;
|
return;
|
||||||
|
break;
|
||||||
other.ammo_nails = other.ammo_nails + self.aflag;
|
other.ammo_nails = other.ammo_nails + self.aflag;
|
||||||
case 3: // rockets
|
case 3: // rockets
|
||||||
if (other.ammo_rockets >= 100)
|
if (other.ammo_rockets >= 100)
|
||||||
|
|
Loading…
Reference in a new issue