Skip to content

Commit

Permalink
Fix classnames for HD updates
Browse files Browse the repository at this point in the history
  • Loading branch information
caligari87 committed Aug 14, 2021
1 parent 2891075 commit 7239fa4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions ai/module/ai_flashlight.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ extend class UaS_AI_Handler {
);
bool HumanClass = (
owner is "ZombieStormtrooper" ||
owner is "HideousShotgunGuy" ||
owner is "VulcanetteGuy" ||
owner is "ZombieShotgunner" ||
owner is "VulcanetteZombie" ||
owner is "HDOperator"
);
if (!BotClass && !HumanClass) { return; }
Expand Down
2 changes: 1 addition & 1 deletion allies/module/allies_spawner.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class UaS_Ally_Spawner : EventHandler {

bool corpseType = (
e.Thing.GetClassName() == 'DeadZombieStormtrooper' ||
e.Thing.GetClassName() == 'DeadHideousShotgunGuy' ||
e.Thing.GetClassName() == 'DeadZombieShotgunner' ||
e.Thing.GetClassName() == 'DeadRifleman' ||
e.Thing.GetClassName() == 'ReallyDeadRifleman'
);
Expand Down
4 changes: 2 additions & 2 deletions laserlight/module/laser.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ class UaS_LaserLightModule : HDWeapon {
);
bool HumanClass = (
owner is "ZombieStormtrooper" ||
owner is "HideousShotgunGuy" ||
owner is "VulcanetteGuy" ||
owner is "ZombieShotgunner" ||
owner is "VulcanetteZombie" ||
owner is "HDOperator"
);
if (HumanClass) { offset = 8; }
Expand Down
4 changes: 2 additions & 2 deletions looting/uasinfo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Looting:ZombieSemiStormtrooper: HD4mMag,HD4mMag,HD4mMag
Looting:ZombieSMGStormtrooper: HD9mMag30,HD9mMag30,HD9mMag30,HDFragGrenadeAmmo
Looting:UndeadHomeboy: HD9mMag15,HD9mMag15,HD9mMag15

Looting:HideousShotgunGuy: HDHandgunRandomDrop, PortableStimpack
Looting:ZombieShotgunner: HDHandgunRandomDrop, PortableStimpack
Looting:UndeadJackbootman: HD4mMag,HD4mMag,HD4mMag
Looting:JackAndJillboot: ShellPickup,ShellPickup,ShellPickup
Looting:Jackboot: ShellPickup,ShellPickup,ShellPickup

Looting:VulcanetteGuy: HD4mMag,HD4mMag,HD4mMag,HD4mMag,PortableBerserkPack
Looting:VulcanetteZombie: HD4mMag,HD4mMag,HD4mMag,HD4mMag,PortableBerserkPack

Looting:Serpentipede: HDHandgunRandomDrop
4 changes: 2 additions & 2 deletions uasinfo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Looting:ZombieSemiStormtrooper: HD4mMag,HD4mMag,HD4mMag
Looting:ZombieSMGStormtrooper: HD9mMag30,HD9mMag30,HD9mMag30,HDFragGrenadeAmmo
Looting:UndeadHomeboy: HD9mMag15,HD9mMag15,HD9mMag15

Looting:HideousShotgunGuy: HDHandgunRandomDrop, PortableStimpack
Looting:ZombieShotgunner: HDHandgunRandomDrop, PortableStimpack
Looting:UndeadJackbootman: HD4mMag,HD4mMag,HD4mMag
Looting:JackAndJillboot: ShellPickup,ShellPickup,ShellPickup
Looting:Jackboot: ShellPickup,ShellPickup,ShellPickup

Looting:VulcanetteGuy: HD4mMag,HD4mMag,HD4mMag,HD4mMag,PortableBerserkPack
Looting:VulcanetteZombie: HD4mMag,HD4mMag,HD4mMag,HD4mMag,PortableBerserkPack

Looting:Serpentipede: HDHandgunRandomDrop

0 comments on commit 7239fa4

Please sign in to comment.