[antum_overrides] Create aliases for "animalmaterials:fish_bluewhite",
"animalmaterials:fish_clownfish", "cooking:fish_bluewhite_cooked", & "cooking:fish_clownfish_cooked".master
parent
0c59d13d2c
commit
3a173139c5
|
@ -33,6 +33,8 @@ minetest.register_craftitem(":animalmaterials:fish_bluewhite", {
|
|||
stack_max = 25
|
||||
})
|
||||
|
||||
minetest.register_alias("fish_bluewhite_raw", "animalmaterials:fish_bluewhite")
|
||||
|
||||
minetest.register_craftitem(":animalmaterials:fish_clownfish", {
|
||||
description = "Raw Clownfish",
|
||||
image = "antum_fish_raw.png",
|
||||
|
@ -40,3 +42,5 @@ minetest.register_craftitem(":animalmaterials:fish_clownfish", {
|
|||
groups = { meat=1, eatable=1 },
|
||||
stack_max = 25
|
||||
})
|
||||
|
||||
minetest.register_alias("clownfish_raw", "animalmaterials:fish_clownfish")
|
||||
|
|
|
@ -33,6 +33,8 @@ minetest.register_craftitem(":cooking:fish_bluewhite_cooked", {
|
|||
stack_max = 25
|
||||
})
|
||||
|
||||
minetest.register_alias("fish_bluewhite_cooked", "cooking:fish_bluewhite_cooked")
|
||||
|
||||
minetest.register_craftitem(":cooking:fish_clownfish_cooked", {
|
||||
description = "Cooked Clownfish",
|
||||
image = "antum_fish_cooked.png",
|
||||
|
@ -40,3 +42,5 @@ minetest.register_craftitem(":cooking:fish_clownfish_cooked", {
|
|||
groups = { meat=1 , eatable=1},
|
||||
stack_max = 25
|
||||
})
|
||||
|
||||
minetest.register_alias("clownfish_cooked", "cooking:fish_clownfish_cooked")
|
||||
|
|
Loading…
Reference in New Issue