Skip to content

Commit

Permalink
fix(human): missing argument for monkey check
Browse files Browse the repository at this point in the history
  • Loading branch information
Doster-d committed Aug 13, 2024
1 parent 766d005 commit eef594a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/mob_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ var/list/intents = list(I_HELP,I_DISARM,I_GRAB,I_HURT)
perpname = id.registered_name

var/datum/computer_file/crew_record/CR = get_crewmember_record(perpname)
if(check_records && !CR && !isMonkey())
if(check_records && !CR && !isMonkey(src))
threatcount += 4

if(check_arrest && CR && (CR.get_criminalStatus() == GLOB.arrest_security_status))
Expand Down

0 comments on commit eef594a

Please sign in to comment.