Skip to content

Commit

Permalink
typos yet again are my enemy
Browse files Browse the repository at this point in the history
  • Loading branch information
TooFewSecrets authored Dec 3, 2024
1 parent f63038b commit 5560e31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/living.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1390,7 +1390,7 @@
return FALSE
if(user != null && src == user)
return FALSE
if(invisibility || alpha == 0)//cloaked
if(bility || alpha == 0)//cloaked

Check failure on line 1393 in code/modules/mob/living/living.dm

View workflow job for this annotation

GitHub Actions / OpenDream

OD0404: Unknown identifier "bility"

Check failure on line 1393 in code/modules/mob/living/living.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "bility"
return FALSE
// Now, are they viewable by a camera? (This is last because it's the most intensive check)
if(!near_camera(src))
Expand Down Expand Up @@ -1918,7 +1918,7 @@
if(prob(probby)) // first success will ping their location, but you need to succeed twice in a row to fully dispel magical invisibility with just your eyes - this should not be an easy thing to do
emote("huh")
to_chat(M, span_danger("[src]'s supernatural perception dispels my invisbility!"))
animate(user, alpha = 255, time = 1 SECONDS, easing = EASE_IN) // this will not remove the chat message when the invis spell actually wears off, slop code, but better than godmode invis
animate(M, alpha = 255, time = 1 SECONDS, easing = EASE_IN) // this will not remove the chat message when the invis spell actually wears off, slop code, but better than godmode invis
else
if(M.m_intent == MOVE_INTENT_SNEAK)
if(M.client?.prefs.showrolls)
Expand Down

0 comments on commit 5560e31

Please sign in to comment.