neckerchief text is correct (#19431)

* neckerchief text

* punctuation
This commit is contained in:
ktlwjec
2023-06-28 01:18:17 +01:00
committed by GitHub
parent 41279481f2
commit 2477ce3546
2 changed files with 5 additions and 5 deletions

View File

@@ -284,7 +284,7 @@ GLOBAL_LIST_INIT(cursed_animal_masks, list(
var/currentHandIndex = user.get_held_index_of_item(src)
user.transferItemToLoc(src, null)
user.put_in_hand(nk, currentHandIndex)
user.visible_message(span_notice("You tie [src] up like a neckerchief."), span_notice("[user] ties [src] up like a neckerchief."))
user.visible_message(span_notice("[user] ties [src] up like a neckerchief."), span_notice("You tie [src] up like a neckerchief."))
qdel(src)
else
to_chat(user, span_warning("You must be holding [src] in order to tie it!"))

View File

@@ -229,7 +229,7 @@
var/oldName = src.name
qdel(src)
user.put_in_hand(newBand, currentHandIndex)
user.visible_message("You untie [oldName] back into a [newBand.name]", "[user] unties [oldName] back into a [newBand.name]")
user.visible_message("[user] unties [oldName] back into a [newBand.name].", "You untie [oldName] back into a [newBand.name].")
else
to_chat(user, span_warning("You must be holding [src] in order to untie it!"))