commit
974921b5ce
@ -1,4 +1,5 @@
|
||||
hudbars
|
||||
mobs
|
||||
intllib?
|
||||
default?
|
||||
flowers?
|
||||
@ -22,7 +23,6 @@ jkfarming?
|
||||
jkwine?
|
||||
kpgmobs?
|
||||
mobfcooking?
|
||||
mobs?
|
||||
moretrees?
|
||||
mtfoods?
|
||||
mush45?
|
||||
|
@ -1 +0,0 @@
|
||||
hbhunger
|
1
mods/mobs/modpack.txt
Normal file
1
mods/mobs/modpack.txt
Normal file
@ -0,0 +1 @@
|
||||
this file is to inform minetest there are mods in this directory
|
@ -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')
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -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", {
|
||||
@ -477,4 +484,13 @@ minetest.register_node("ws_core:dry_shrub", {
|
||||
type = "fixed",
|
||||
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},
|
||||
})
|
||||
|
BIN
mods/ws_core/textures/ws_flint.png
Normal file
BIN
mods/ws_core/textures/ws_flint.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 397 B |
Loading…
x
Reference in New Issue
Block a user