mirror of
https://codeberg.org/tenplus1/mobs_animal.git
synced 2024-11-09 20:30:16 +01:00
fix default check
This commit is contained in:
parent
a240d0c937
commit
10865e9ab4
7
bee.lua
7
bee.lua
|
@ -1,6 +1,9 @@
|
||||||
-- Translation support
|
-- Translation support
|
||||||
local S = minetest.get_translator("mobs_animal")
|
local S = minetest.get_translator("mobs_animal")
|
||||||
|
|
||||||
|
-- check for default mod
|
||||||
|
local mod_def = minetest.get_modpath("default")
|
||||||
|
|
||||||
-- Bee by KrupnoPavel (.b3d model by sirrobzeroone)
|
-- Bee by KrupnoPavel (.b3d model by sirrobzeroone)
|
||||||
|
|
||||||
mobs:register_mob("mobs_animal:bee", {
|
mobs:register_mob("mobs_animal:bee", {
|
||||||
|
@ -92,7 +95,7 @@ minetest.register_node(":mobs:beehive", {
|
||||||
walkable = true,
|
walkable = true,
|
||||||
groups = {oddly_breakable_by_hand = 3, flammable = 1, disable_suffocation = 1},
|
groups = {oddly_breakable_by_hand = 3, flammable = 1, disable_suffocation = 1},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
sounds = default and default.node_sound_defaults(),
|
sounds = mod_def and default.node_sound_defaults(),
|
||||||
|
|
||||||
on_construct = function(pos)
|
on_construct = function(pos)
|
||||||
|
|
||||||
|
@ -166,7 +169,7 @@ minetest.register_node(":mobs:honey_block", {
|
||||||
tiles = {"mobs_honey_block.png"},
|
tiles = {"mobs_honey_block.png"},
|
||||||
groups = {snappy = 3, flammable = 2},
|
groups = {snappy = 3, flammable = 2},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
sounds = default and default.node_sound_dirt_defaults()
|
sounds = mod_def and default.node_sound_dirt_defaults()
|
||||||
})
|
})
|
||||||
|
|
||||||
-- recipe
|
-- recipe
|
||||||
|
|
5
cow.lua
5
cow.lua
|
@ -1,6 +1,9 @@
|
||||||
-- Translation support
|
-- Translation support
|
||||||
local S = minetest.get_translator("mobs_animal")
|
local S = minetest.get_translator("mobs_animal")
|
||||||
|
|
||||||
|
-- check for default mod
|
||||||
|
local mod_def = minetest.get_modpath("default")
|
||||||
|
|
||||||
-- Cow by sirrobzeroone
|
-- Cow by sirrobzeroone
|
||||||
|
|
||||||
mobs:register_mob("mobs_animal:cow", {
|
mobs:register_mob("mobs_animal:cow", {
|
||||||
|
@ -261,7 +264,7 @@ minetest.register_node(":mobs:cheeseblock", {
|
||||||
tiles = {"mobs_cheeseblock.png"},
|
tiles = {"mobs_cheeseblock.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {oddly_breakable_by_hand = 3},
|
groups = {oddly_breakable_by_hand = 3},
|
||||||
sounds = default and default.node_sound_dirt_defaults()
|
sounds = mod_def and default.node_sound_dirt_defaults()
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
|
Loading…
Reference in New Issue
Block a user