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:
Luc
2024-02-19 06:43:40 -05:00
committed by GitHub
parent a77eac915a
commit b279d3bd4a
+1 -1
View File
@@ -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)