Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben10083 committed Feb 6, 2024
1 parent 9116ede commit 719b8ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/projectiles/guns/energy/nuclear.dm
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
modifystate = "golden_deep_ornatepistolstun"

firemodes = list(
list(mode_name="disorient", projectile_type=/obj/item/projectile/beam/disorient, modifystate="golden_deep_ornatepistolstun", fire_sound='sound/weapons/Taser.ogg', fire_delay = 4),
list(mode_name="disorient", projectile_type=/obj/item/projectile/beam/disorient, modifystate="golden_deep_ornatepistolstun", fire_sound='sound/weapons/Taser.ogg'),
list(mode_name="lethal", projectile_type=/obj/item/projectile/beam/pistol, modifystate="golden_deep_ornatepistollethal", fire_sound='sound/weapons/laser1.ogg')
)

Expand Down
2 changes: 1 addition & 1 deletion code/modules/projectiles/projectile/beams.dm
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
impact_type = /obj/effect/projectile/muzzle/laser/scc

/obj/item/projectile/beam/disorient/on_hit(var/atom/target, var/blocked = 0)
if(ishuman(target) && blocked < 100) //Make them trip
if(ishuman(target) && blocked < 100 && !issilicon(target) && !isipc(target)) //Make them trip
var/mob/living/carbon/human/H = target
if(H.druggy < 75)
H.druggy += 15
Expand Down

0 comments on commit 719b8ed

Please sign in to comment.