- Duke: Add missing World Tour flamethrower from alt weapon mode implementation completed in 51a08fbaf3.

This commit is contained in:
Mitchell Richters 2020-08-29 22:30:45 +10:00
parent 694444b62a
commit 7ff73ae2f1
1 changed files with 6 additions and 0 deletions

View File

@ -1117,6 +1117,12 @@ void selectweapon_d(int snum, int weap) // playernum, weaponnum
case GROW_WEAPON:
j = SHRINKER_WEAPON;
break;
case FREEZE_WEAPON:
j = isWorldTour() ? FLAMETHROWER_WEAPON : p->curr_weapon;
break;
case FLAMETHROWER_WEAPON:
j = FREEZE_WEAPON;
break;
default:
j = p->curr_weapon;
break;