Skip to content

Commit

Permalink
Fixes cassette typos (#3473)
Browse files Browse the repository at this point in the history
* Update cassette.dm

* Update postbox.dm
  • Loading branch information
Ivniinvi authored Sep 20, 2024
1 parent e1bcff6 commit 992d26c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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

0 comments on commit 992d26c

Please sign in to comment.