diff --git a/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm b/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm index 2a6d0839c84..444718ec28f 100644 --- a/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm +++ b/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm @@ -613,6 +613,10 @@ icon_state = "shotglassred" name = "shot of gibs" desc = "...Let's not talk about this." + if ("absinthe") + icon_state = "shotglassgreen" + name = "shot of absinthe" + desc = "I am stuck in the cycles of my guilt..." else icon_state = "shotglassbrown" name = "shot of... what?" diff --git a/code/modules/food_and_drinks/food/snacks.dm b/code/modules/food_and_drinks/food/snacks.dm index 07d640605a5..9b340df0f0d 100644 --- a/code/modules/food_and_drinks/food/snacks.dm +++ b/code/modules/food_and_drinks/food/snacks.dm @@ -193,7 +193,7 @@ else user.visible_message( \ "[user] inaccurately slices [src] with [W]!", \ - "You inaccurately slice [src] with [W]!" \ + "You inaccurately slice [src] with your [W]!" \ ) slices_lost = rand(1,min(1,round(slices_num/2))) diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 1b1e7c63c17..370a97c8fc8 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ