Skip to content

Commit

Permalink
recipe too
Browse files Browse the repository at this point in the history
  • Loading branch information
larentoun committed Oct 13, 2024
1 parent 539f704 commit 2d6517a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions modular_bandastation/translations/code/design.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,13 @@
return
var/atom/design_result = build_path
name = capitalize(design_result::ru_name_nominative) || name

/datum/crafting_recipe
var/use_declented_name = TRUE

/datum/crafting_recipe/New()
. = ..()
if(!use_declented_name || !result)
return
var/atom/crafting_result = result
name = capitalize(crafting_result::ru_name_nominative) || name

0 comments on commit 2d6517a

Please sign in to comment.