mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-27 07:08:55 +01:00
14 lines
419 B
Plaintext
14 lines
419 B
Plaintext
/datum/asset/spritesheet_batched/kitchen_recipes
|
|
name = "kitchen_recipes"
|
|
|
|
/datum/asset/spritesheet_batched/kitchen_recipes/create_spritesheets()
|
|
for(var/datum/recipe/R as anything in subtypesof(/datum/recipe))
|
|
var/key = sanitize_css_class_name("[R.type]")
|
|
|
|
var/atom/item = R.result
|
|
var/datum/universal_icon/icon = get_display_icon_for(item)
|
|
if(!icon || !icon.icon_file)
|
|
continue
|
|
|
|
insert_icon(key, icon)
|