Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCastmer committed Feb 2, 2024
1 parent c6c701c commit 2c01054
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1689,8 +1689,8 @@ GLOBAL_LIST_EMPTY(features_by_species)
target.Move(target_shove_turf, shove_dir)
if(get_turf(target) != target_shove_turf)
for(var/obj/O in target_shove_turf) //dripstation edit start
if(istype(O, /obj/structure/table))
shove_on_table = TRUE
if(istype(O, /obj/structure/table))
shove_on_table = TRUE

Check failure on line 1693 in code/modules/mob/living/carbon/human/species.dm

View workflow job for this annotation

GitHub Actions / Lints

undefined var: "shove_on_table"
if(shove_on_table)

Check failure on line 1694 in code/modules/mob/living/carbon/human/species.dm

View workflow job for this annotation

GitHub Actions / Lints

undefined var: "shove_on_table"
target.Knockdown(SHOVE_KNOCKDOWN_HUMAN)
to_chat(src, span_danger("You shove [target.name] onto \the table!"))
Expand Down

0 comments on commit 2c01054

Please sign in to comment.