From 08c2090b7942e746875b7b4d58947e8c66edc03c Mon Sep 17 00:00:00 2001 From: Greenjoe12345 Date: Mon, 24 Jul 2023 17:05:02 +0100 Subject: [PATCH] Fixes --- code/game/objects/items/weapons/storage/backpack.dm | 2 +- code/modules/clothing/under/accessories/xeno/teshari.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 8931efa9231..88357f94ec7 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -20,7 +20,7 @@ pickup_sound = 'sound/items/pickup/backpack.ogg' var/list/species_restricted = null -/obj/item/storage/backpack/mob_can_equip(M as mob, slot, disable_warning = FALSE) +/obj/item/storage/backpack/mob_can_equip(M, slot, disable_warning = FALSE) //if we can't equip the item anyway, don't bother with species_restricted (cuts down on spam) if (!..()) diff --git a/code/modules/clothing/under/accessories/xeno/teshari.dm b/code/modules/clothing/under/accessories/xeno/teshari.dm index ffe1f763324..a144aade869 100644 --- a/code/modules/clothing/under/accessories/xeno/teshari.dm +++ b/code/modules/clothing/under/accessories/xeno/teshari.dm @@ -1,6 +1,6 @@ /obj/item/clothing/accessory/scarf/teshari/neckscarf name = "small neckscarf" - desc = "a neckscarf that is too small for a human's neck" + desc = "A neckscarf that is too small for a human's neck" icon_state = "tesh_neckscarf" species_restricted = list(SPECIES_TESHARI)