Skip to content

Commit

Permalink
Nit picky sob
Browse files Browse the repository at this point in the history
Co-authored-by: harryob <[email protected]>
  • Loading branch information
realforest2001 and harryob authored Jul 24, 2023
1 parent 546b483 commit 4e8485c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/modules/cm_preds/yaut_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -895,14 +895,14 @@
flags_item = ITEM_PREDATOR|DELONDROP|NODROP
paygrade = null

/obj/item/card/id/bracer_chip/set_user_data(mob/living/carbon/human/H)
if(!istype(H))
/obj/item/card/id/bracer_chip/set_user_data(mob/living/carbon/human/human_user)
if(!istype(human_user))
return

registered_name = H.real_name
registered_ref = WEAKREF(H)
registered_gid = H.gid
blood_type = H.blood_type
registered_name = human_user.real_name
registered_ref = WEAKREF(human_user)
registered_gid = human_user.gid
blood_type = human_user.blood_type

var/list/new_access = list(ACCESS_YAUTJA_SECURE)
var/obj/item/clothing/gloves/yautja/hunter/bracer = loc
Expand Down

0 comments on commit 4e8485c

Please sign in to comment.