diff --git a/code/modules/reagents/machinery/dispenser/dispenser2.dm b/code/modules/reagents/machinery/dispenser/dispenser2.dm index 3d59d53e6cdf..df6efa366535 100644 --- a/code/modules/reagents/machinery/dispenser/dispenser2.dm +++ b/code/modules/reagents/machinery/dispenser/dispenser2.dm @@ -203,6 +203,7 @@ container = null . = TRUE + /* PY edit - Remove chemistry import files if("import_config") if(import_job && (ui.user.mind.assigned_role != import_job)) to_chat(ui.user, span_warning("This option is only available to the job: [import_job]")) @@ -219,6 +220,7 @@ if(length(new_recipes)) saved_recipes = new_recipes . = TRUE + */ if("record_recipe") recording_recipe = list() diff --git a/code/modules/reagents/reagent_containers/borghypo.dm b/code/modules/reagents/reagent_containers/borghypo.dm index d1ae9feb6f1d..bd62f5cd7d6a 100644 --- a/code/modules/reagents/reagent_containers/borghypo.dm +++ b/code/modules/reagents/reagent_containers/borghypo.dm @@ -315,6 +315,7 @@ saved_recipes -= recipe_name . = TRUE + /* PY edit - Remove chemistry import files if("select_recipe") // Make sure we actually have a recipe saved with the given name before setting it! var/recipe_name = params["recipe"] @@ -327,6 +328,7 @@ is_dispensing_recipe = TRUE selected_recipe_id = recipe_name . = TRUE + */ if("set_chemical_search") ui_chemical_search = params["uiChemicalSearch"] diff --git a/tgui/packages/tgui/interfaces/ChemDispenser/ChemDispenserRecipes.tsx b/tgui/packages/tgui/interfaces/ChemDispenser/ChemDispenserRecipes.tsx index 6c970b361526..91de21a80285 100644 --- a/tgui/packages/tgui/interfaces/ChemDispenser/ChemDispenserRecipes.tsx +++ b/tgui/packages/tgui/interfaces/ChemDispenser/ChemDispenserRecipes.tsx @@ -1,7 +1,5 @@ import { Box, Button, Section, Stack } from 'tgui-core/components'; import type { BooleanLike } from 'tgui-core/react'; -import { handleImportData } from '../PlushieEditor/function'; -import { exportRecipes } from './functions'; import type { Recipe } from './types'; export const ChemDispenserRecipes = (props: { @@ -69,6 +67,7 @@ export const ChemDispenserRecipes = (props: { )} {!isRecording && ( <> + {/* PY edit - Remove chemistry import files exportRecipes(recipes)} /> + */}