Skip to content

Commit

Permalink
some missed single letter vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Birdtalon committed Nov 16, 2023
1 parent 90ff0dc commit 631e24c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@
return FALSE

/mob/living/carbon/xenomorph/start_pulling(atom/movable/movable_atom, lunge, no_msg)
if(SEND_SIGNAL(AM, COMSIG_MOVABLE_XENO_START_PULLING, src) & COMPONENT_ALLOW_PULL)
if(SEND_SIGNAL(movable_atom, COMSIG_MOVABLE_XENO_START_PULLING, src) & COMPONENT_ALLOW_PULL)
return do_pull(movable_atom, lunge, no_msg)

if(HAS_TRAIT(src,TRAIT_ABILITY_BURROWED))
Expand Down
6 changes: 3 additions & 3 deletions code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
Original file line number Diff line number Diff line change
Expand Up @@ -135,22 +135,22 @@
/mob/living/carbon/xenomorph/larva/pull_response(mob/puller)
return TRUE

/mob/living/carbon/xenomorph/larva/UnarmedAttack(atom/A, proximity, click_parameters, tile_attack, ignores_resin = FALSE)
/mob/living/carbon/xenomorph/larva/UnarmedAttack(atom/atom, proximity, click_parameters, tile_attack, ignores_resin = FALSE)
a_intent = INTENT_HELP //Forces help intent for all interactions.
if(!caste)
return FALSE

if(lying) //No attacks while laying down
return FALSE

A.attack_larva(src)
atom.attack_larva(src)
xeno_attack_delay(src) //Adds some lag to the 'attack'

/proc/spawn_hivenumber_larva(atom/atom, hivenumber)
if(!GLOB.hive_datum[hivenumber] || isnull(atom))
return

var/mob/living/carbon/xenomorph/larva/larva = new /mob/living/carbon/xenomorph/larva(A)
var/mob/living/carbon/xenomorph/larva/larva = new /mob/living/carbon/xenomorph/larva(atom)

larva.set_hive_and_update(hivenumber)

Expand Down

0 comments on commit 631e24c

Please sign in to comment.