From 3e129df5272d98ccf56d2a8c91bcab85a0386705 Mon Sep 17 00:00:00 2001 From: dwasint <82520990+dwasint@users.noreply.github.com> Date: Thu, 7 Sep 2023 21:51:17 -0400 Subject: [PATCH] minor fixes --- data/cassette_storage/friday.json | 2 +- monkestation/code/modules/cassettes/machines/postbox.dm | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/data/cassette_storage/friday.json b/data/cassette_storage/friday.json index 36416a915358..b108100775f2 100644 --- a/data/cassette_storage/friday.json +++ b/data/cassette_storage/friday.json @@ -5,7 +5,7 @@ "side2_icon": "cassette_friday", "author_ckey": "Dwasint", "author_name": "Collects-The-Candy", - "approved": 0, + "approved": 1, "songs": { "side1": [ "https://www.youtube.com/watch?v=QFdB408xgEE", diff --git a/monkestation/code/modules/cassettes/machines/postbox.dm b/monkestation/code/modules/cassettes/machines/postbox.dm index a41f9f5ee651..79ae4991ee5e 100644 --- a/monkestation/code/modules/cassettes/machines/postbox.dm +++ b/monkestation/code/modules/cassettes/machines/postbox.dm @@ -17,17 +17,16 @@ var/obj/item/device/cassette_tape/attacked_tape = weapon 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 ///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.")) return if(!living_user.client.prefs.adjust_metacoins(user.client.ckey, -5000, donator_multipler = FALSE)) return - */ /// this is where it ends attacked_tape.moveToNullspace() submit_cassette_for_review(attacked_tape, user)