mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 04:22:39 +01:00
Pill bottle update (#7121)
shamelessly stolen from bay, clicking pillbottles in hand will allow you to pour one out into your offhand.
This commit is contained in:
@@ -151,6 +151,26 @@
|
||||
drop_sound = 'sound/items/drop/pillbottle.ogg'
|
||||
max_storage_space = 16
|
||||
|
||||
/obj/item/weapon/storage/pill_bottle/attack_self(mob/living/user)
|
||||
if(user.get_inactive_hand())
|
||||
to_chat(user, span("notice","You need an empty hand to take something out."))
|
||||
return
|
||||
if(contents.len)
|
||||
var/obj/item/I = contents[1]
|
||||
if(!remove_from_storage(I,user))
|
||||
return
|
||||
if(user.put_in_inactive_hand(I))
|
||||
to_chat(user, span("notice","You take \the [I] out of \the [src]."))
|
||||
if(iscarbon(user))
|
||||
var/mob/living/carbon/C = user
|
||||
C.swap_hand()
|
||||
else
|
||||
I.dropInto(loc)
|
||||
to_chat(user, span("notice","You fumble around with \the [src] and drop \the [I] on the floor."))
|
||||
else
|
||||
to_chat(user, span("warning","\The [src] is empty."))
|
||||
|
||||
|
||||
/obj/item/weapon/storage/pill_bottle/antitox
|
||||
name = "bottle of Dylovene pills"
|
||||
desc = "Contains pills used to counter toxins."
|
||||
|
||||
Reference in New Issue
Block a user