All pastes #2073655 Raw Edit

Stuff

public text v1 · immutable
#2073655 ·published 2011-06-02 10:20 UTC
rendered paste body
// Bread and butter + cheese slice = cheese sandwich
/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/butterbread/attackby(/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/cheese/W as obj, mob/user as mob)
	if(istype(W,/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/cheese))
		var/turf/spawnloc = foodloc(user, src)
		new /obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/chsandwich(spawnloc)
		user << "You make a cheese sandwich."
		del(W)
		del(src)