From dd9bf83d8ab6613bcbf8efb6a77a5478354f7b68 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Tue, 5 Jul 2016 20:03:01 -0400 Subject: [PATCH] Removes debugging messages from hotel --- code/modules/awaymissions/mission_code/spacehotel.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/modules/awaymissions/mission_code/spacehotel.dm b/code/modules/awaymissions/mission_code/spacehotel.dm index b5737ddcfd4..c4820db97ec 100644 --- a/code/modules/awaymissions/mission_code/spacehotel.dm +++ b/code/modules/awaymissions/mission_code/spacehotel.dm @@ -230,19 +230,15 @@ // to check a person into a room; no financial stuff; returns the keycard /obj/effect/hotel_controller/proc/checkin(roomid, mob/living/carbon/occupant, obj/item/weapon/card/id/id) if(!istype(occupant)) - world << "no occupant" return null var/obj/machinery/door/unpowered/hotel_door/D = room_doors["[roomid]"] if(!D || D.occupant || (occupant in guests)) - world << "room occupied" return null D.account = get_card_account(id, occupant) if(!D.account) - world << "no account" return null if(!D.account.charge(100, transaction_purpose = "10 minutes", dest_name = name)) - world << "xaction failed" return null D.occupant = occupant