develop #31
7 changed files with 21 additions and 3 deletions
|
@ -3,5 +3,4 @@ depends= bucket,default,vessels,stairs
|
|||
description = Adds a juice press and two juice storage containers. Most fruits and several veggies can be juiced. The resulting drinks can be 'ate' to gain health, or if you are using the thirsty mod, to regain hydration.
|
||||
author = Nathan, Napiophelios
|
||||
optional_depends = hunger,thirsty,plantlife,farming_plus,crops,farming,minetest_doc_modpack,fruits,ethereal
|
||||
release = 1004
|
||||
title = Drinks
|
||||
|
|
|
@ -212,6 +212,19 @@ end
|
|||
local aux_timer = 0
|
||||
|
||||
function lib_mount.drive(entity, dtime, is_mob, moving_anim, stand_anim, jump_height, can_fly, can_go_down, can_go_up, enable_crash)
|
||||
-- Sanity checks
|
||||
if entity.driver and not entity.driver:get_attach() then entity.driver = nil end
|
||||
|
||||
if entity.passenger and not entity.passenger:get_attach() then
|
||||
entity.passenger = nil
|
||||
end
|
||||
if entity.passenger2 and not entity.passenger2:get_attach() then
|
||||
entity.passenger2 = nil
|
||||
end
|
||||
if entity.passenger3 and not entity.passenger3:get_attach() then
|
||||
entity.passenger3 = nil
|
||||
end
|
||||
|
||||
aux_timer = aux_timer + dtime
|
||||
|
||||
if can_fly and can_fly == true then
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
name = mobs_monster
|
||||
depends = default, mobs
|
||||
optional depends = lucky_block, toolranks, intllib
|
||||
description = Adds many types of monster.
|
||||
optional_depends = lucky_block, toolranks, intllib
|
||||
description = Adds many types of monsters.
|
||||
|
|
3
mods/skinsdb/meta/character_1946.txt
Normal file
3
mods/skinsdb/meta/character_1946.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
altair
|
||||
gamer 20n
|
||||
CC BY-SA 3.0
|
3
mods/skinsdb/meta/character_1947.txt
Normal file
3
mods/skinsdb/meta/character_1947.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
starkiller
|
||||
gamer 20n
|
||||
CC BY-SA 3.0
|
BIN
mods/skinsdb/textures/character_1946.png
Normal file
BIN
mods/skinsdb/textures/character_1946.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.1 KiB |
BIN
mods/skinsdb/textures/character_1947.png
Normal file
BIN
mods/skinsdb/textures/character_1947.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.1 KiB |
Loading…
Reference in a new issue