Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes cassette typos #3473

Merged
merged 3 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion monkestation/code/modules/cassettes/cassette.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
10 changes: 5 additions & 5 deletions monkestation/code/modules/cassettes/machines/postbox.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
Loading