Skip to content

Commit

Permalink
move slots to DoomPlayer
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoLuis0 committed Jan 13, 2025
1 parent aa94fba commit f4c51f4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions wadsrc/static/zscript/actors/doom/doomplayer.zs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class DoomPlayer : PlayerPawn
Player.WeaponSlot 3, "Shotgun", "SuperShotgun";
Player.WeaponSlot 4, "Chaingun";
Player.WeaponSlot 5, "RocketLauncher";
Player.WeaponSlot 6, "PlasmaRifle";
Player.WeaponSlot 7, "BFG9000";
Player.WeaponSlot 6, "PlasmaRifle", "ID24Incinerator";
Player.WeaponSlot 7, "BFG9000", "ID24CalamityBlade";

Player.ColorRange 112, 127;
Player.Colorset 0, "$TXT_COLOR_GREEN", 0x70, 0x7F, 0x72;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class ID24CalamityBlade : DoomWeapon // Heatwave Generator
Weapon.AmmoUse 10;
Weapon.AmmoGive 40;
Weapon.AmmoType "ID24Fuel";
Weapon.SlotNumber 7;
Inventory.PickupMessage "$ID24_GOTCALAMITYBLADE";
Tag "$TAG_ID24CALAMITYBLADE";
}
Expand Down
1 change: 0 additions & 1 deletion wadsrc/static/zscript/actors/doom/id24/id24incinerator.zs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class ID24Incinerator : DoomWeapon // Incinerator
Weapon.AmmoUse 1;
Weapon.AmmoGive 40;
Weapon.AmmoType "ID24Fuel";
Weapon.SlotNumber 6;
Inventory.PickupMessage "$ID24_GOTINCINERATOR";
Tag "$TAG_ID24INCINERATOR";
}
Expand Down

0 comments on commit f4c51f4

Please sign in to comment.