Skip to content

Commit

Permalink
renames vars
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuuhuuuu committed Jan 21, 2024
1 parent 502e16d commit 7c96206
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/modules/cm_aliens/structures/special/recovery_node.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
health = 400
var/recovery_pheromone_range = 2
var/warding_pheromone_range = 8
var/recovery_strenght = 2.5
var/warding_strenght = 1
var/recovery_strength = 2.5
var/warding_strength = 1


/obj/effect/alien/resin/special/recovery/get_examine_text(mob/user)
Expand All @@ -20,11 +20,11 @@
for(var/mob/living/carbon/xenomorph/xenomorph in range(recovery_pheromone_range, loc))
if(xenomorph.ignores_pheromones)
continue
if(recovery_strenght > xenomorph.recovery_new && linked_hive == xenomorph.hivenumber)
xenomorph.recovery_new = recovery_strenght
if(recovery_strength > xenomorph.recovery_new && linked_hive == xenomorph.hivenumber)
xenomorph.recovery_new = recovery_strength

for(var/mob/living/carbon/xenomorph/xenomorph in range(warding_pheromone_range, loc))
if(xenomorph.ignores_pheromones)
continue
if(warding_strenght > xenomorph.warding_new && linked_hive == xenomorph.hivenumber)
xenomorph.recovery_new = warding_strenght
if(warding_strength > xenomorph.warding_new && linked_hive == xenomorph.hivenumber)
xenomorph.recovery_new = warding_strength

0 comments on commit 7c96206

Please sign in to comment.