From 31ce158f2c72edf33a7065d239a4f842334f20f0 Mon Sep 17 00:00:00 2001 From: Matt Headley Date: Thu, 19 Sep 2024 10:55:47 -0400 Subject: [PATCH 1/2] Update cassette.dm --- monkestation/code/modules/cassettes/cassette.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkestation/code/modules/cassettes/cassette.dm b/monkestation/code/modules/cassettes/cassette.dm index 3f68a83bd401..9fdfe816cb7e 100644 --- a/monkestation/code/modules/cassettes/cassette.dm +++ b/monkestation/code/modules/cassettes/cassette.dm @@ -68,7 +68,7 @@ desc = cassette_desc_string desc += "\n" if(!approved_tape) - desc += span_warning("It appears to be a bootleg tape, quality is not a guarentee!\n") + desc += span_warning("It appears to be a bootleg tape, quality is not a guarantee!\n") if(author_name) desc += span_notice("Mixed by [author_name]\n") From af313caad4c9f903503fba9d7d0b34a5ca7cca90 Mon Sep 17 00:00:00 2001 From: Matt Headley Date: Thu, 19 Sep 2024 10:57:19 -0400 Subject: [PATCH 2/2] Update postbox.dm --- .../code/modules/cassettes/machines/postbox.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/monkestation/code/modules/cassettes/machines/postbox.dm b/monkestation/code/modules/cassettes/machines/postbox.dm index 14d5c7eb0660..3b60a4326667 100644 --- a/monkestation/code/modules/cassettes/machines/postbox.dm +++ b/monkestation/code/modules/cassettes/machines/postbox.dm @@ -27,29 +27,29 @@ return if(attacked_tape.name == "A blank cassette") - to_chat(user, span_notice("Please name your tape before submitting it you can't change this later!")) + to_chat(user, span_notice("Please name your tape before submitting it, you can't change this later!")) return if(attacked_tape.cassette_desc_string == "Generic Desc") - to_chat(user, span_notice("Please add a description to your tape before submitting it you can't change this later!")) + to_chat(user, span_notice("Please add a description to your tape before submitting it, you can't change this later!")) return var/list/side1 = attacked_tape.songs["side1"] var/list/side2 = attacked_tape.songs["side2"] if(!length(side1) && !length(side2)) - to_chat(user, span_notice("Please add some songs to your tape before submitting it you can't change this later!")) + to_chat(user, span_notice("Please add some songs to your tape before submitting it, you can't change this later!")) return if(attacked_tape.approved_tape) to_chat(user, span_notice("This tape has already been approved by the Board, it would be a waste of money to send it in again.")) return - var/choice = tgui_alert(user, "Are you sure this Costs 5k Monkecoins", "Mailbox", list("Yes", "No")) + var/choice = tgui_alert(user, "Are you sure? This costs 5k Monkecoins", "Mailbox", list("Yes", "No")) if(choice != "Yes") return ///these two parts here should be commented out for local testing without a db if(user.client.prefs.metacoins < 5000) - to_chat(user, span_notice("Sorry you don't have enough Monkecoins to submit a cassette for review.")) + to_chat(user, span_notice("Sorry, you don't have enough Monkecoins to submit a cassette for review.")) return if(!user.client.prefs.adjust_metacoins(user.client.ckey, -5000, donator_multipler = FALSE))