Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update code/modules/mob/living/simple_animal/hostile/megafauna/blood_…
Browse files Browse the repository at this point in the history
…drunk_miner.dm

Co-authored-by: Rerik007 <[email protected]>
dobryninss and Rerik007 authored Jan 23, 2024
1 parent 0941db7 commit 548313a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -97,8 +97,7 @@ Difficulty: Medium
/obj/effect/proc_holder/spell/blood_suit/create_new_targeting()
return new /datum/spell_targeting/self

/obj/effect/proc_holder/spell/blood_suit/cast(list/targets, mob/user = usr)
var/mob/living/U = user
/obj/effect/proc_holder/spell/blood_suit/cast(list/targets, mob/living/user = usr)
if(is_mining_level(user.z) || istype(get_area(user), /area/ruin/space/bubblegum_arena))
if(U.lying)

Check failure on line 102 in code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm

GitHub Actions / Run Linters

undefined var: "U"

Check warning on line 102 in code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm

GitHub Actions / Run Linters

field access requires static type: "lying"
to_chat(U, span_notice("Fight right now my bloody warrior!"))

Check failure on line 103 in code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm

GitHub Actions / Run Linters

undefined var: "U"

0 comments on commit 548313a

Please sign in to comment.