From da7949b4b608caccd982651d8b62e47e0f8f8bbd Mon Sep 17 00:00:00 2001 From: BlackMajor Date: Sun, 11 Aug 2019 01:38:57 +1200 Subject: [PATCH] I should probably remove those debug messages --- code/modules/admin/verbs/randomverbs.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index d68139f055..937b45d18b 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -541,13 +541,9 @@ Traitors and the like can also be revived with the previous role mostly intact. chosen = input("Select a mob type", "Select Mob", matches[1]) as null|anything in matches if(!chosen) return - src << "[chosen]" - - src << "YEET 1" var/char_name = alert(src, "Spawn mob with their character name?", "Mob name", "Yes", "No", "Cancel") var/name = 0 - src << "YEET 2" if(char_name == "Cancel") return if(char_name == "Yes") @@ -561,8 +557,6 @@ Traitors and the like can also be revived with the previous role mostly intact. if(vorgans == "No") organs = 0 - src << "YEET 3" - var/spawnloc if(!src.mob) src << "Can't spawn them in unless you're in a valid spawn location!" @@ -570,7 +564,6 @@ Traitors and the like can also be revived with the previous role mostly intact. spawnloc = get_turf(src.mob) var/mob/living/new_mob = new chosen(spawnloc) - src << "[new_mob]" if(!new_mob) src << "Spawning failed, try again or bully coders"