mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-10 22:54:32 +01:00
Shotglasses now go down in one sip (#24134)
* Shotglasses now actually let you shoot them down * Update code/modules/food_and_drinks/drinks/drinks/shotglass.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * thanks snowball --------- Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
This commit is contained in:
@@ -1192,7 +1192,7 @@ GLOBAL_LIST_INIT(ventcrawl_machinery, list(/obj/machinery/atmospherics/unary/ven
|
||||
playsound(loc, to_drink.consume_sound, rand(10, 50), TRUE)
|
||||
if(to_drink.reagents.total_volume)
|
||||
taste(to_drink.reagents)
|
||||
var/drink_size = min(to_drink.amount_per_transfer_from_this, 5)
|
||||
var/drink_size = max(initial(to_drink.amount_per_transfer_from_this), 5)
|
||||
if(drinksize_override)
|
||||
drink_size = drinksize_override
|
||||
to_drink.reagents.reaction(src, REAGENT_INGEST)
|
||||
|
||||
Reference in New Issue
Block a user