All pastes #2073658 Raw Edit

Stuff

public text v1 · immutable
#2073658 ·published 2011-06-02 10:25 UTC
rendered paste body
// Cheese sandwich + meat sandwich = sammich
/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/chsandwich/attackby(/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/msandwich/W as obj, mob/user as mob)
	if(istype(W,/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/msandwich))
		var/turf/spawnloc = foodloc(user, src)
		new /obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/sammich(spawnloc)
		user << "You make a sammich,"
		del(W)
		del(src)

// Meat sandwich + cheese sandwich = sammich
/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/msandwich/attackby(/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/chsandwich/W as obj, mob/user as mob)
	if(istype(W,/obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/chsandwich))
		var/turf/spawnloc = foodloc(user, src)
		new /obj/item/weapon/reagent_containers/food/snacks/breadsys/ontop/sammich(spawnloc)
		user << "You make a sammich,"
		del(W)
		del(src)