Skip to content

Commit

Permalink
Removes an unneeded var in mob_hud.dm (#6846)
Browse files Browse the repository at this point in the history
# About the pull request


removes an unneeded var in mob_hud.dm. this got missed in my heartbreak
scan PR as i did not compile after adding the suggested changes

# Explain why it's good for the game

removes a warning when compiling the game

# Changelog
:cl:
code: removed an unneeded var in mob_hud.dm
/:cl:
  • Loading branch information
VileBeggar authored Aug 3, 2024
1 parent 6bf78da commit 9144beb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion code/datums/mob_hud.dm
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@ GLOBAL_LIST_INIT_TYPED(huds, /datum/mob_hud, list(
var/revive_enabled = stat == DEAD && check_tod() && is_revivable()
if(stat == DEAD)
revive_enabled = check_tod() && is_revivable()
var/datum/internal_organ/heart/heart = islist(internal_organs_by_name) ? internal_organs_by_name["heart"] : null

var/holder2_set = 0
if(hivenumber)
Expand Down

0 comments on commit 9144beb

Please sign in to comment.