Merge pull request #3 from ratmix/master

various fixes
This commit is contained in:
Gerold55 2019-04-02 02:35:52 -04:00 committed by GitHub
commit 974921b5ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 1225 additions and 1203 deletions

View File

@ -1,4 +1,5 @@
hudbars
mobs
intllib?
default?
flowers?
@ -22,7 +23,6 @@ jkfarming?
jkwine?
kpgmobs?
mobfcooking?
mobs?
moretrees?
mtfoods?
mush45?

View File

@ -1 +0,0 @@
hbhunger

1
mods/mobs/modpack.txt Normal file
View File

@ -0,0 +1 @@
this file is to inform minetest there are mods in this directory

View File

@ -82,10 +82,10 @@ thirsty.time_next_tick = thirsty.config.tick_time
dofile(minetest.get_modpath('thirsty')..'/hud.lua')
dofile(minetest.get_modpath('thirsty')..'/functions.lua')
--[[ temporary disable for dev server
minetest.register_on_joinplayer(thirsty.on_joinplayer)
minetest.register_on_dieplayer(thirsty.on_dieplayer)
minetest.register_globalstep(thirsty.main_loop)
--]]
dofile(minetest.get_modpath('thirsty')..'/components.lua')

View File

@ -1226,3 +1226,9 @@ minetest.register_craft({
{'', 'group:stick', ''},
}
})
minetest.register_craftitem("ws_core:flint", {
description = "Flint",
inventory_image = "ws_flint.png"
})

View File

@ -14,6 +14,13 @@ minetest.register_node("ws_core:gravel", {
tileable_vertical = false}},
groups = {crumbly = 3, soil = 1},
sounds = ws_core.node_sound_dirt_ws_cores(),
drop = {
max_items = 1,
items = {
{items = {'ws_core:flint'}, rarity = 19},
{items = {'ws_core:gravel'}}
}
}
})
minetest.register_node("ws_core:sandy_dirt", {
@ -478,3 +485,12 @@ minetest.register_node("ws_core:dry_shrub", {
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, 4 / 16, 6 / 16},
},
})
--temporary fix for missing node - this needs to be redefined
minetest.register_node("ws_core:mossycobble", {
description = "Sandy Dirt",
tiles = {"ws_sandy_dirt.png",
{name = "ws_sandy_dirt.png",
tileable_vertical = false}},
groups = {crumbly = 3, soil = 1},
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 397 B