Merge pull request 'master' (#19) from master into milan2018
This commit is contained in:
commit
229d9d493e
2 changed files with 159 additions and 1 deletions
40
build.sh
Normal file
40
build.sh
Normal file
|
@ -0,0 +1,40 @@
|
|||
#!/bin/bash
|
||||
|
||||
git clone https://github.com/libspatialindex/libspatialindex /tmp/spatialindex && \
|
||||
cd /tmp/spatialindex && \
|
||||
cmake . \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr && \
|
||||
make && \
|
||||
make install && \
|
||||
echo "**** compile minetestserver ****" && \
|
||||
mkdir -p /defaults
|
||||
git clone --depth 1 --branch 0.4.17.1 https://github.com/minetest/minetest.git /tmp/minetest && \
|
||||
cp /tmp/minetest//minetest.conf.example /defaults/minetest.conf && \
|
||||
cd /tmp/minetest && \
|
||||
cmake . \
|
||||
-DBUILD_CLIENT=0 \
|
||||
-DBUILD_SERVER=1 \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCUSTOM_BINDIR=/usr/bin \
|
||||
-DCUSTOM_DOCDIR="/usr/share/doc/minetest" \
|
||||
-DCUSTOM_SHAREDIR="/usr/share/minetest" \
|
||||
-DENABLE_CURL=1 \
|
||||
-DENABLE_LEVELDB=1 \
|
||||
-DENABLE_LUAJIT=1 \
|
||||
-DENABLE_REDIS=1 \
|
||||
-DENABLE_SOUND=0 \
|
||||
-DENABLE_SYSTEM_GMP=1 \
|
||||
-DENABLE_POSTGRESQL=1 \
|
||||
-DPOSTGRESQL_CONFIG_EXECUTABLE=/usr/bin/pg_config \
|
||||
-DPOSTGRESQL_LIBRARY=/usr/lib/libpq.so \
|
||||
-DRUN_IN_PLACE=0 && \
|
||||
make && \
|
||||
make install && \
|
||||
echo "**** copy games to temporary folder ****" && \
|
||||
mkdir -p \
|
||||
/defaults/games && \
|
||||
rm /defaults/games/minetest -r && \
|
||||
echo "**** fetch additional game from git ****" && \
|
||||
git clone --depth 1 --branch 0.4.17 https://github.com/minetest/minetest_game.git /defaults/games/minetest && \
|
||||
cp -pr /defaults/games/minetest /home/minetest/.minetest/games
|
||||
cp -pr /defaults/games/minetest /usr/share/minetest/games
|
120
debug-errors.txt
120
debug-errors.txt
|
@ -121,4 +121,122 @@ netest/mods/mobs/api.lua:689: bad argument #2 to 'random' (interval is empty)
|
|||
2020-05-20 21:49:55: ERROR[Main]: stack traceback:
|
||||
2020-05-20 21:49:55: ERROR[Main]: ...ome/minetest/.minetest/mods/xdecor/src/workbench.lua:269: in main chunk
|
||||
2020-05-20 21:49:55: ERROR[Main]: [C]: in function 'dofile'
|
||||
2020-05-20 21:49:55: ERROR[Main]: /home/minetest/.minetest/mods/xdecor/init.lua:43: in main chunk
|
||||
2020-05-20 21:49:55: ERROR[Main]: /home/minetest/.minetest/mods/xdecor/init.lua:43: in main chunk
|
||||
|
||||
|
||||
|
||||
2020-05-23 12:36:00: ERROR[Main]: ServerError: AsyncErr: ServerThread::run Lua: Runtime error from mod '??' in callback on_playerReceiveFields(): (load):17: attempt to concatenate a nil value
|
||||
2020-05-23 12:36:00: ERROR[Main]: stack traceback:
|
||||
2020-05-23 12:36:00: ERROR[Main]: (load):17: in function 'show_formspec'
|
||||
2020-05-23 12:36:00: ERROR[Main]: (load):15: in function '?'
|
||||
2020-05-23 12:36:00: ERROR[Main]: /usr/share/minetest/builtin/game/register.lua:420: in function </usr/share/minetest/builtin/game/register.lua:400>
|
||||
|
||||
-------------
|
||||
Separator
|
||||
-------------
|
||||
|
||||
2020-05-23 12:36:03: [Main]: Automatically selecting world at [/home/minetest/.minetest/worlds/world]
|
||||
2020-05-23 12:36:03: WARNING[Main]: Mod name conflict detected: "farming"
|
||||
2020-05-23 12:36:03: WARNING[Main]: Will not load: /home/minetest/.minetest/games/minetest/mods/farming
|
||||
2020-05-23 12:36:03: WARNING[Main]: Overridden by: /home/minetest/.minetest/mods/farming
|
||||
2020-05-23 12:36:06: WARNING[Main]: Undeclared global variable "player_api" accessed at /home/minetest/.minetest/mods/playeranim/init.lua:12
|
||||
2020-05-23 12:36:06: WARNING[Main]: Undeclared global variable "description3" accessed at /home/minetest/.minetest/mods/nixie_tubes/init.lua:147
|
||||
2020-05-23 12:36:19: WARNING[Main]: Node default:wood has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:19: WARNING[Main]: Node default:fence_wood has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:19: WARNING[Main]: Field "light_propagates": Deprecated; determined from paramtype
|
||||
2020-05-23 12:36:19: WARNING[Main]: Field "light_propagates": Deprecated; determined from paramtype
|
||||
2020-05-23 12:36:19: WARNING[Main]: Field "light_propagates": Deprecated; determined from paramtype
|
||||
2020-05-23 12:36:20: WARNING[Main]: Node default:stone_block has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:20: WARNING[Main]: Node default:stone has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:20: WARNING[Main]: Node default:cobble has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:20: WARNING[Main]: Node moreblocks:circle_stone_bricks has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:20: WARNING[Main]: Node moreblocks:iron_checker has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:20: WARNING[Main]: Node moreblocks:wood_tile has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:20: WARNING[Main]: Node moreblocks:wood_tile_flipped has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:25: ACTION[Main]: [crops] Hydration and dehydration mechanics are enabled.
|
||||
2020-05-23 12:36:25: ACTION[Main]: [crops] Loaded!
|
||||
2020-05-23 12:36:25: WARNING[Main]: 3d_armor_ip: Mod loaded but unused.
|
||||
2020-05-23 12:36:25: ACTION[Main]: [boost_cart] Overwriting definitions of similar carts mod
|
||||
2020-05-23 12:36:26: WARNING[Main]: Not registering alias, item with same name is already defined: unifieddyes:white -> unifieddyes:white_paint
|
||||
2020-05-23 12:36:26: WARNING[Main]: Not registering alias, item with same name is already defined: unifieddyes:grey -> unifieddyes:grey_paint
|
||||
2020-05-23 12:36:26: WARNING[Main]: Node default:brick has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:26: WARNING[Main]: Node default:clay has a palette, but not a suitable paramtype2.
|
||||
2020-05-23 12:36:26: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:armchair -> homedecor:armchair_black
|
||||
.__ __ __
|
||||
_____ |__| ____ _____/ |_ ____ _______/ |_
|
||||
/ \| |/ \_/ __ \ __\/ __ \ / ___/\ __\
|
||||
| Y Y \ | | \ ___/| | \ ___/ \___ \ | |
|
||||
|__|_| /__|___| /\___ >__| \___ >____ > |__|
|
||||
\/ \/ \/ \/ \/
|
||||
2020-05-23 12:36:29: ACTION[Main]: World at [/home/minetest/.minetest/worlds/world]
|
||||
2020-05-23 12:36:29: ACTION[Main]: Server for gameid="minetest" listening on :::30000.
|
||||
2020-05-23 12:36:29: ACTION[Server]: Announcing to servers.minetest.net
|
||||
|
||||
2020-05-23 12:36:00: ERROR[Main]: ServerError: AsyncErr: ServerThread::run Lua: Runtime error from mod '??' in callback on_playerReceiveFields(): (load):17: attempt to concatenate a nil value
|
||||
2020-05-23 12:36:00: ERROR[Main]: stack traceback:
|
||||
2020-05-23 12:36:00: ERROR[Main]: (load):17: in function 'show_formspec'
|
||||
2020-05-23 12:36:00: ERROR[Main]: (load):15: in function '?'
|
||||
2020-05-23 12:36:00: ERROR[Main]: /usr/share/minetest/builtin/game/register.lua:420: in function </usr/share/minetest/builtin/game/register.lua:400>
|
||||
2020-05-23 12:39:02: ERROR[Server]: suspiciously large amount of objects detected: 65 in (-9,0,-34); removing all of them.
|
||||
2020-05-23 12:43:59: ERROR[Server]: suspiciously large amount of objects detected: 68 in (0,2,0); removing all of them.
|
||||
2020-05-23 12:46:47: ERROR[Server]: suspiciously large amount of objects detected: 104 in (19,1,-31); removing all of them.
|
||||
2020-05-23 12:51:39: ERROR[Server]: suspiciously large amount of objects detected: 67 in (19,1,-31); removing all of them.
|
||||
2020-05-23 12:52:22: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3031,13,445)
|
||||
2020-05-23 12:52:22: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3031,13,445)
|
||||
2020-05-23 12:52:23: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3030,14,445)
|
||||
2020-05-23 12:52:23: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3030,14,445)
|
||||
2020-05-23 12:52:24: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3029,15,445)
|
||||
2020-05-23 12:52:24: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3029,15,445)
|
||||
2020-05-23 12:52:25: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3029,15,445)
|
||||
2020-05-23 12:52:26: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3028,16,445)
|
||||
2020-05-23 12:52:26: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3028,16,445)
|
||||
2020-05-23 12:52:38: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3021,12,447)
|
||||
2020-05-23 12:52:38: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3022,13,447)
|
||||
2020-05-23 12:52:39: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3022,13,447)
|
||||
2020-05-23 12:52:39: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3022,13,446)
|
||||
2020-05-23 12:52:39: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3022,13,446)
|
||||
2020-05-23 12:52:40: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3023,14,446)
|
||||
2020-05-23 12:52:40: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3023,14,446)
|
||||
2020-05-23 12:52:42: ERROR[Server]: Item "default:wood_thinstair" not defined
|
||||
2020-05-23 12:52:43: ERROR[Server]: Item "default:wood_thinstair" not defined
|
||||
2020-05-23 12:52:43: ERROR[Server]: Item "default:wood_thinstair" not defined
|
||||
2020-05-23 12:52:43: ERROR[Server]: Item "default:wood_thinstair" not defined
|
||||
2020-05-23 12:52:46: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3023,14,447)
|
||||
2020-05-23 12:52:47: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3023,14,447)
|
||||
2020-05-23 12:52:47: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3024,15,447)
|
||||
2020-05-23 12:52:47: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3024,15,447)
|
||||
2020-05-23 12:52:47: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3024,15,446)
|
||||
2020-05-23 12:52:48: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3024,15,446)
|
||||
2020-05-23 12:52:48: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3025,16,446)
|
||||
2020-05-23 12:52:49: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3025,16,446)
|
||||
2020-05-23 12:52:49: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3025,16,447)
|
||||
2020-05-23 12:52:49: ERROR[Server]: Item "default:wood_thinstair" not defined at position (-3025,16,447)
|
||||
2020-05-23 12:53:05: ERROR[Server]: Item "default:wood_thinstair" not defined
|
||||
2020-05-23 12:53:07: ERROR[Server]: Item "default:wood_thinstair" not defined
|
||||
2020-05-23 12:54:35: ERROR[Server]: suspiciously large amount of objects detected: 173 in (-19,2,-64); removing all of them.
|
||||
2020-05-23 12:57:38: ERROR[Server]: Item "stairs:stair_stone_rune" not defined at position (-183,12,-515)
|
||||
2020-05-23 13:01:53: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:54: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:54: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:54: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:56: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:57: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:57: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:58: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:58: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:58: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:58: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:59: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:01:59: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:02:00: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:02:00: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:02:01: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:02:01: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:02:01: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:02:02: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:02:03: ERROR[Server]: Item "stairs:slab_cobble_compressed" not defined at position (-401,16,-420)
|
||||
2020-05-23 13:05:08: ERROR[Main]: ServerError: AsyncErr: ServerThread::run Lua: Runtime error from mod '??' in callback on_playerReceiveFields(): (load):17: attempt to concatenate a nil value
|
||||
2020-05-23 13:05:08: ERROR[Main]: stack traceback:
|
||||
2020-05-23 13:05:08: ERROR[Main]: (load):17: in function 'show_formspec'
|
||||
2020-05-23 13:05:08: ERROR[Main]: (load):15: in function '?'
|
||||
2020-05-23 13:05:08: ERROR[Main]: /usr/share/minetest/builtin/game/register.lua:420: in function </usr/share/minetest/builtin/game/register.lua:400>
|
Loading…
Reference in a new issue