mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- RRRA weapons work again.
This commit is contained in:
parent
960e656be6
commit
ed81022d71
1 changed files with 2 additions and 2 deletions
|
@ -2659,7 +2659,7 @@ static void fireweapon(int snum)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (isRRRA() && p->curr_weapon >= MOTORCYCLE_WEAPON) return;
|
if (!isRRRA() && p->curr_weapon >= MOTORCYCLE_WEAPON) return;
|
||||||
switch (p->curr_weapon)
|
switch (p->curr_weapon)
|
||||||
{
|
{
|
||||||
case DYNAMITE_WEAPON:
|
case DYNAMITE_WEAPON:
|
||||||
|
@ -2781,7 +2781,7 @@ static void operateweapon(int snum, int sb_snum, int psect)
|
||||||
int i, j, k;
|
int i, j, k;
|
||||||
int psectlotag = sector[psect].lotag;
|
int psectlotag = sector[psect].lotag;
|
||||||
|
|
||||||
if (!isRRRA() && p->curr_weapon > BOWLING_WEAPON) return;
|
if (!isRRRA() && p->curr_weapon >= MOTORCYCLE_WEAPON) return;
|
||||||
switch (p->curr_weapon)
|
switch (p->curr_weapon)
|
||||||
{
|
{
|
||||||
case DYNAMITE_WEAPON:
|
case DYNAMITE_WEAPON:
|
||||||
|
|
Loading…
Reference in a new issue