Skip to content

Commit

Permalink
Hivelord: single letter var (#4932)
Browse files Browse the repository at this point in the history
# About the pull request

Replaces a lone single letter var. Hivelords are blessed.

# Explain why it's good for the game
# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
code: Replaces single letter var in hivelord code
/:cl:
  • Loading branch information
Birdtalon committed Nov 16, 2023
1 parent b1ef41a commit ad320a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@

/// This check mainly exists because of the new resin node ability for resin whisperer.
/mob/living/carbon/xenomorph/hivelord/proc/on_weeds()
var/turf/T = get_turf(src)
if(locate(/obj/effect/alien/weeds) in T)
var/turf/turf = get_turf(src)
if(locate(/obj/effect/alien/weeds) in turf)
return TRUE
return FALSE

0 comments on commit ad320a6

Please sign in to comment.