Skip to content

Commit

Permalink
Merge pull request #759 from LikeLakers2/fix-third-person-throw-text-2
Browse files Browse the repository at this point in the history
[PORT] Fixes third-person throw verbs passed as just an `s`
  • Loading branch information
wraith-54321 authored Dec 20, 2023
2 parents 32b3fe1 + 000f7bd commit 0a9563d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/carbon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
var/obj/item/thrown_item = thrown_thing
if(thrown_item.throw_verb)
verb_text = thrown_item.throw_verb
visible_message(span_danger("[src] [plural_s(verb_text)] [thrown_thing][power_throw ? " really hard!" : "."]"), \
visible_message(span_danger("[src] [verb_text][plural_s(verb_text)] [thrown_thing][power_throw ? " really hard!" : "."]"), \
span_danger("You [verb_text] [thrown_thing][power_throw ? " really hard!" : "."]"))
log_message("has thrown [thrown_thing] [power_throw > 0 ? "really hard" : ""]", LOG_ATTACK)
var/extra_throw_range = HAS_TRAIT(src, TRAIT_THROWINGARM) ? 2 : 0
Expand Down

0 comments on commit 0a9563d

Please sign in to comment.