Skip to content

Commit

Permalink
removes the not in the abnocheck for sentience potions (#2529)
Browse files Browse the repository at this point in the history
removes the not in the abnocheck
  • Loading branch information
Thundershade09 authored Nov 2, 2024
1 parent db1bf0b commit effc97f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/research/xenobiology/xenobiology.dm
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@
if(!isanimal(M) || M.ckey) //only works on animals that aren't player controlled
to_chat(user, "<span class='warning'>[M] is already too intelligent for this to work!</span>")
return
if(!isabnormalitymob(M)) //only works on animals that aren't player controlled
if(isabnormalitymob(M)) //only works on animals that aren't player controlled
to_chat(user, span_warning("The potion will have no effect on [M]!"))
return
if(M.stat)
Expand Down

0 comments on commit effc97f

Please sign in to comment.