Skip to content

Commit

Permalink
weirdstuff
Browse files Browse the repository at this point in the history
  • Loading branch information
generalthrax committed Jul 1, 2024
1 parent 49dab68 commit 932f048
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 24 deletions.
6 changes: 1 addition & 5 deletions code/modules/food_and_drinks/recipes/processor_recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,13 @@
input = /obj/item/reagent_containers/food/snacks/meat/rawcutlet
output = /obj/item/reagent_containers/food/snacks/meat/rawbacon

/datum/food_processor_process/potatowedges
input = /obj/item/reagent_containers/food/snacks/grown/potato/wedges
output = /obj/item/reagent_containers/food/snacks/fries

/datum/food_processor_process/sweetpotato
input = /obj/item/reagent_containers/food/snacks/grown/potato/sweet
output = /obj/item/reagent_containers/food/snacks/yakiimo

/datum/food_processor_process/potato
input = /obj/item/reagent_containers/food/snacks/grown/potato
output = /obj/item/reagent_containers/food/snacks/tatortot
output = /obj/item/reagent_containers/food/snacks/fries

/datum/food_processor_process/carrot
input = /obj/item/reagent_containers/food/snacks/grown/carrot
Expand Down
19 changes: 0 additions & 19 deletions code/modules/hydroponics/grown/potato.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,6 @@
juice_results = list(/datum/reagent/consumable/potato_juice = 0)
distill_reagent = /datum/reagent/consumable/ethanol/vodka

/obj/item/reagent_containers/food/snacks/grown/potato/wedges
name = "potato wedges"
desc = "Slices of neatly cut potato."
icon_state = "potato_wedges"
filling_color = "#E9967A"
bitesize = 100


/obj/item/reagent_containers/food/snacks/grown/potato/attackby(obj/item/W, mob/user, params)
if(W.get_sharpness())
to_chat(user, "<span class='notice'>You cut the potato into wedges with [W].</span>")
var/obj/item/reagent_containers/food/snacks/grown/potato/wedges/Wedges = new /obj/item/reagent_containers/food/snacks/grown/potato/wedges
remove_item_from_storage(user)
qdel(src)
user.put_in_hands(Wedges)
else
return ..()


// Sweet Potato
/obj/item/seeds/potato/sweet
name = "pack of sweet potato seeds"
Expand Down

0 comments on commit 932f048

Please sign in to comment.