From e9965254b42e53aaba30cd1b7a3532d8919ace67 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Thu, 5 May 2016 05:30:54 -0500 Subject: [PATCH] Fixes for the ship in a bottle --- code/modules/mining/lavaland/necropolis_chests.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 4d32794ebd1..5a2205d554e 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -385,16 +385,17 @@ //Dragon Boat -/obj/item/device/ship_in_a_bottle +/obj/item/ship_in_a_bottle name = "ship in a bottle" desc = "A tiny ship inside a bottle." icon = 'icons/obj/lavaland/artefacts.dmi' icon_state = "ship_bottle" -/obj/item/device/ship_in_a_bottle/attack_self(mob/user) +/obj/item/ship_in_a_bottle/attack_self(mob/user) user << "You're not sure how they get the ships in these things, but you're pretty sure you know how to get it out." playsound(user.loc, 'sound/effects/Glassbr1.ogg', 100, 1) new /obj/vehicle/lavaboat/dragon(get_turf(src)) + qdel(src) /obj/vehicle/lavaboat/dragon name = "mysterious boat"