diff --git a/code/modules/reagents/reagent_containers/food/snacks.dm b/code/modules/reagents/reagent_containers/food/snacks.dm
index 98285e04e0..b6f9c36b77 100644
--- a/code/modules/reagents/reagent_containers/food/snacks.dm
+++ b/code/modules/reagents/reagent_containers/food/snacks.dm
@@ -16,9 +16,7 @@
/obj/item/weapon/reagent_containers/food/snacks/proc/On_Consume(var/mob/M)
if(!usr) return
if(!reagents.total_volume)
- if(M == usr)
- usr << "You finish eating \the [src]."
- M.visible_message("[M] finishes eating \the [src].")
+ M.visible_message("[M] finishes eating \the [src].","You finish eating \the [src].")
usr.drop_from_inventory(src) //so icons update :[
if(trash)
@@ -194,8 +192,8 @@
del(src)
return
-/obj/item/weapon/reagent_containers/food/snacks/proc/is_sliceable()
- return (slices_num && slice_path && slices_num > 0)
+/obj/item/weapon/reagent_containers/food/snacks/proc/is_sliceable()
+ return (slices_num && slice_path && slices_num > 0)
/obj/item/weapon/reagent_containers/food/snacks/Del()
if(contents)
@@ -206,24 +204,18 @@
////////////////////////////////////////////////////////////////////////////////
/// FOOD END
////////////////////////////////////////////////////////////////////////////////
-
/obj/item/weapon/reagent_containers/food/snacks/attack_generic(var/mob/living/user)
-
- if(isanimal(user) || isalien(user))
-
- if(bitecount == 0 || prob(50))
- user.custom_emote(1,"nibbles away at the [src]")
- bitecount++
-
- if(reagents && user.reagents)
- reagents.trans_to_ingest(user, bitesize)
-
- spawn(5)
- if(!src && !user.client)
- user.custom_emote(1,"[pick("burps", "cries for more", "burps twice", "looks at the area where the food was")]")
- del(src)
-
- On_Consume(user)
+ if(!isanimal(user) && !isalien(user))
+ return
+ user.visible_message("[user] nibbles away at the [src].","You nibble away at the [src].")
+ bitecount++
+ if(reagents && user.reagents)
+ reagents.trans_to_ingest(user, bitesize)
+ spawn(5)
+ if(!src && !user.client)
+ user.custom_emote(1,"[pick("burps", "cries for more", "burps twice", "looks at the area where the food was")]")
+ del(src)
+ On_Consume(user)
//////////////////////////////////////////////////
////////////////////////////////////////////Snacks