Skip to content

Commit

Permalink
Fix for stupid forest.
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Apr 17, 2024
1 parent efb9747 commit 0079ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/devices/defibrillator.dm
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
//Job knowledge requirement
if(istype(user))
if(!skillcheck(user, skill_to_check, skill_level))
if(skill_to_check_alt && !skillcheck(user, skill_to_check_alt, skill_level_alt))
if(!skill_to_check_alt || (!skillcheck(user, skill_to_check_alt, skill_level_alt)))
to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]..."))
return

Expand Down

0 comments on commit 0079ca1

Please sign in to comment.