Skip to content

Commit

Permalink
Give verb fix, Khan battle coat buff
Browse files Browse the repository at this point in the history
  • Loading branch information
Zero-Percent-Angel committed Sep 18, 2023
1 parent 5b0964c commit ec56aa8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/modules/clothing/suits/medium_armor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -801,8 +801,8 @@
item_state = "khan_battlecoat"
icon = 'icons/fallout/clothing/armored_medium.dmi'
mob_overlay_icon = 'icons/fallout/onmob/clothes/armor_medium.dmi'
slowdown = ARMOR_SLOWDOWN_MEDIUM * ARMOR_SLOWDOWN_GLOBAL_MULT
armor_tokens = list(ARMOR_MODIFIER_UP_BULLET_T1, ARMOR_MODIFIER_UP_LASER_T1, ARMOR_MODIFIER_UP_ENV_T1, ARMOR_MODIFIER_UP_DT_T2)
slowdown = ARMOR_SLOWDOWN_MEDIUM * ARMOR_SLOWDOWN_LESS_T1 * ARMOR_SLOWDOWN_GLOBAL_MULT
armor_tokens = list(ARMOR_MODIFIER_UP_BULLET_T1, ARMOR_MODIFIER_UP_MELEE_T1, ARMOR_MODIFIER_UP_LASER_T1, ARMOR_MODIFIER_UP_ENV_T1, ARMOR_MODIFIER_UP_DT_T2)
armor = ARMOR_VALUE_MEDIUM
armor_tier_desc = ARMOR_CLOTHING_MEDIUM
stiffness = MEDIUM_STIFFNESS
2 changes: 1 addition & 1 deletion code/modules/mob/living/living.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,7 @@
to_chat(target, span_warning("\The [src] seems to have given up on passing \the [gift] to you."))
return

if(!gift.mob_can_equip(src, target, SLOT_HANDS, TRUE, TRUE))
if(!gift.mob_can_equip(target, src, SLOT_HANDS, TRUE, TRUE))
to_chat(src, span_warning("[target] is unable to receive \a [gift] right now."))
to_chat(target, span_warning("\The [src] seems to have given up on passing \the [gift] to you."))
return
Expand Down

0 comments on commit ec56aa8

Please sign in to comment.