Skip to content

Commit

Permalink
Proper var name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Segrain committed Feb 26, 2024
1 parent 7301ccf commit c90c662
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/cm_aliens/structures/trap.dm
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@
for(var/turf/T in orange(1,loc))
if(T.density)
continue
var/obj/effect/trap_tripwire/HT = new /obj/effect/trap_tripwire(T)
HT.linked_trap = src
tripwires += HT
var/obj/effect/trap_tripwire/new_tripwire = new /obj/effect/trap_tripwire(T)
new_tripwire.linked_trap = src
tripwires += new_tripwire

/obj/effect/alien/resin/trap/attackby(obj/item/W, mob/user)
if(!(istype(W, /obj/item/clothing/mask/facehugger) && isxeno(user)))
Expand Down

0 comments on commit c90c662

Please sign in to comment.