Errors Running Mesecons, Changing to Recent version, Server

Post Reply
webmanoffesto
Member
Posts: 35
Joined: Thu Nov 30, 2017 14:30

Errors Running Mesecons, Changing to Recent version, Server

by webmanoffesto » Post

How do I resolve these errors

Code: Select all

2018-02-10 18:05:48: ERROR[main]: ======= END OF ERROR FROM LUA ========
2018-02-10 18:05:48: ERROR[main]: Server: Failed to load and run /home/tom/.minetest/mods/mesecons/mesecons_pistons/init.lua
2018-02-10 18:05:48: ERROR[main]: ModError: ModError: Failed to load and run /home/tom/.minetest/mods/mesecons/mesecons_pistons/init.lua
2018-02-10 18:05:48: ERROR[main]: Error from Lua:
2018-02-10 18:05:48: ERROR[main]: .../tom/.minetest/mods/mesecons/mesecons_pistons/legacy.lua:10: attempt to call field 'register_lbm' (a nil value)
2018-02-10 18:05:48: ERROR[main]: stack traceback:
2018-02-10 18:05:48: ERROR[main]: 	.../tom/.minetest/mods/mesecons/mesecons_pistons/legacy.lua:10: in main chunk
2018-02-10 18:05:48: ERROR[main]: 	[C]: in function 'dofile'
2018-02-10 18:05:48: ERROR[main]: 	/home/tom/.minetest/mods/mesecons/mesecons_pistons/init.lua:487: in main chunk
Last edited by webmanoffesto on Sun Feb 11, 2018 02:50, edited 1 time in total.

Jordach
Member
Posts: 4534
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach
Location: Blender Scene

Re: Errors Running Mesecons

by Jordach » Post

Update Minetest.

0.4.13 is several years old.

Do not use the standard repositories.

Grab: https://github.com/minetest/minetest/ar ... rt-0.4.zip

Then using a terminal;

Code: Select all

sudo apt-get install build-essential libirrlicht-dev cmake libbz2-dev libpng-dev libjpeg-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev zlib1g-dev libgmp-dev libjsoncpp-dev libluajit-5.1-dev libluajit-5.1-2
Go into your extracted folder (from the zip folder above) and open a terminal inside it.

Run the following:

Code: Select all

cmake . -DRUN_IN_PLACE=1
Followed by:

Code: Select all

make -j2
Tip: Replace 2 with how many CPU cores you have minus 1.

For the server, do the following:

Code: Select all

cd bin

Code: Select all

./minetest --server --gameid minetest --world your_world_name_here
Drop the mesecons folder into /mods/ and then run the server once with the above command.

In the /bin/ folder, there should be a folder called your_world_name_here, open that folder, and there should be a world.mt file.

Open it up and there should be some lines specifically to enable Mesecons:

Code: Select all

load_mod_MODNAME = false
Set these to true, save the changes, and then restart the server.

webmanoffesto
Member
Posts: 35
Joined: Thu Nov 30, 2017 14:30

Re: Errors Running Mesecons

by webmanoffesto » Post

Why do you recommend a backport? Is that a less than newest-stable version?

The build seemed to go well, but then I got an error message

Code: Select all

[ 99%] Building CXX object src/CMakeFiles/minetest.dir/wieldmesh.cpp.o
[100%] Linking CXX executable ../bin/minetest
[100%] Built target minetest
tom@tom-HP-ProBook-450-G3:~/Downloads/minetest-backport-0.4$ cd bin
tom@tom-HP-ProBook-450-G3:~/Downloads/minetest-backport-0.4/bin$ ./minetest --server --gameid minetest --world TestWorld01
2018-02-10 20:52:26: WARNING[Main]: Couldn't find a locale directory!
2018-02-10 20:52:26: ERROR[Main]: Game "minetest" not found
2018-02-10 20:52:26: ERROR[Main]: Subgame specified in default_game [minetest] is invalid.
2018-02-10 20:52:26: ERROR[Main]: ServerError: Supplied invalid gamespec
tom@tom-HP-ProBook-450-G3:~/Downloads/minetest-backport-0.4/bin$ 

Jordach
Member
Posts: 4534
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach
Location: Blender Scene

Re: Errors Running Mesecons

by Jordach » Post

webmanoffesto wrote:Why do you recommend a backport? Is that a less than newest-stable version?

The build seemed to go well, but then I got an error message

Code: Select all

[ 99%] Building CXX object src/CMakeFiles/minetest.dir/wieldmesh.cpp.o
[100%] Linking CXX executable ../bin/minetest
[100%] Built target minetest
tom@tom-HP-ProBook-450-G3:~/Downloads/minetest-backport-0.4$ cd bin
tom@tom-HP-ProBook-450-G3:~/Downloads/minetest-backport-0.4/bin$ ./minetest --server --gameid minetest --world TestWorld01
2018-02-10 20:52:26: WARNING[Main]: Couldn't find a locale directory!
2018-02-10 20:52:26: ERROR[Main]: Game "minetest" not found
2018-02-10 20:52:26: ERROR[Main]: Subgame specified in default_game [minetest] is invalid.
2018-02-10 20:52:26: ERROR[Main]: ServerError: Supplied invalid gamespec
tom@tom-HP-ProBook-450-G3:~/Downloads/minetest-backport-0.4/bin$ 
Game id might be whatever you named minetest games folder. Try --gameid minetest_game

webmanoffesto
Member
Posts: 35
Joined: Thu Nov 30, 2017 14:30

Re: Errors Running Mesecons

by webmanoffesto » Post

I see the folder
/home/tom/Downloads/minetest-backport-0.4/games
Is that the "games" folder I need?

Okay I copied the subgames
In the folder "/home/tom/Downloads/minetest-backport-0.4/games" I have subgames such as
Lord-of-the-Test-master, Blocky_Adventures, and Block_Islands

But I still get errors
Note that I
choose the subgame Lord-of-the-Test-master: "--gameid Lord-of-the-Test-master"
and
TestWorld01 is not yet created. I'm trying to create it with this" "--world TestWorld01"

Code: Select all

~/Downloads/minetest-backport-0.4/bin$ ./minetest --server --gameid Lord-of-the-Test-master --world TestWorld01
2018-02-10 21:31:26: WARNING[Main]: Couldn't find a locale directory!
2018-02-10 21:31:26: [Main]: Using game specified by --gameid on the command line
2018-02-10 21:31:26: ERROR[Main]: mod "hbarmor" has unsatisfied dependencies:  "hudbars"
2018-02-10 21:31:26: ERROR[Main]: mod "itemframes" has unsatisfied dependencies:  "homedecor_i18n"
2018-02-10 21:31:26: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition
2018-02-10 21:31:26: WARNING[Main]: Not registering alias, item with same name is already defined: mapgen_wood -> default:wood
2018-02-10 21:31:26: WARNING[Main]: Node 'light_source' value exceeds maximum, limiting to maximum: walking_light:light
2018-02-10 21:31:26: WARNING[Main]: Field "tile_images": Deprecated; new name is "tiles".
2018-02-10 21:31:26: WARNING[Main]: Field "light_propagates": Deprecated; determined from paramtype
2018-02-10 21:31:26: WARNING[Main]: Node 'light_source' value exceeds maximum, limiting to maximum: torches:floor
2018-02-10 21:31:26: WARNING[Main]: Node 'light_source' value exceeds maximum, limiting to maximum: torches:wall
2018-02-10 21:31:26: ACTION[Main]: [playereffects] playereffects.mt opened.
2018-02-10 21:31:26: [Main]: [playereffects] playereffects.mt successfully read.
2018-02-10 21:31:26: [Main]: [playereffects] inactive_effects = {
	
}
2018-02-10 21:31:26: [Main]: [playereffects] last_effect_id = 0
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type flyj registered!
[ES-Mobs] Extreme
[ES-Mobs] Survival
[ES-Mobs] Mobs
[ES-Mobs] Loaded!
enable_tnt ~= true
2018-02-10 21:31:26: WARNING[Main]: Undeclared global variable "singleplayer" accessed at ...port-0.4/bin/../games/Terraria_3D/mods/goblins/traps.lua:321
[MOD] Goblins loaded
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Node 'light_source' value exceeds maximum, limiting to maximum: meteor:meteor
2018-02-10 21:31:26: WARNING[Main]: Undeclared global variable "can_dig" accessed at ...t-0.4/bin/../games/Terraria_3D/mods/gravelsieve/init.lua:196
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepspeedplus registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepspeedminus registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepspeedreset registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepjumpplus registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepjumpminus registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepjumpreset registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepgrav0 registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepgravreset registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepregen registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepregen2 registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepbreath registered!
2018-02-10 21:31:26: ACTION[Main]: [playereffects] Effect type pepmole registered!
2018-02-10 21:31:26: ERROR[Main]: default:acacia_bush_sapling is not a known node, unable to register flowerpot
2018-02-10 21:31:26: ERROR[Main]: default:acacia_bush_stem is not a known node, unable to register flowerpot
2018-02-10 21:31:26: ERROR[Main]: default:bush_sapling is not a known node, unable to register flowerpot
2018-02-10 21:31:26: ERROR[Main]: default:bush_stem is not a known node, unable to register flowerpot
2018-02-10 21:31:26: WARNING[Main]: Field "tile_images": Deprecated; new name is "tiles".
2018-02-10 21:31:26: WARNING[Main]: Node 'light_source' value exceeds maximum, limiting to maximum: asteroid_crystals:crystal
2018-02-10 21:31:26: WARNING[Main]: Node 'light_source' value exceeds maximum, limiting to maximum: asteroid_crystals:crystal_tree
2018-02-10 21:31:26: WARNING[Main]: Node 'light_source' value exceeds maximum, limiting to maximum: asteroid_crystals:crystal_leaves
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
[Plants Lib] Loaded
[Mod] Cave Stuff [0.0.3] [cavestuff] Loaded...
[Biome Lib] Loaded
[Vines] Loaded!
2018-02-10 21:31:26: WARNING[Main]: Not registering alias, item with same name is already defined: vines:rope -> ropes:rope
2018-02-10 21:31:26: WARNING[Main]: Not registering alias, item with same name is already defined: vines:rope_end -> ropes:rope_bottom
2018-02-10 21:31:26: WARNING[Main]: Not registering alias, item with same name is already defined: vines:rope_block -> ropes:steel5rope_block
[Ropes] Loaded!
2018-02-10 21:31:26: ACTION[Main]: [mod fishing] Loading...
2018-02-10 21:31:26: ACTION[Main]: [Mod] Fishing - Crabman77's (MFF team) version [1.0.0] [fishing] Loaded...
[3d_armor] Fire Nodes disabled
2018-02-10 21:31:26: WARNING[Main]: Assignment to undeclared global "SPEAR_ENTITY" inside a function at ...t-0.4/bin/../games/Terraria_3D/mods/nssm/nssm_spears.lua:120.
2018-02-10 21:31:26: WARNING[Main]: hazmat_suit: Mod loaded but unused.
2018-02-10 21:31:26: WARNING[Main]: Undeclared global variable "HUD_ENABLE_HUNGER" accessed at ...bin/../games/Terraria_3D/mods/hud_hunger/hud/builtin.lua:30
[aliveai] default/character.b3d is used as default model
[aliveai] loaded: aliveai:bot
[aliveai] loaded: aliveai:bot2
[aliveai] api Loaded
[aliveai] loaded: aliveai_trader:trader
2018-02-10 21:31:26: WARNING[Main]: Field "tile_images": Deprecated; new name is "tiles".
2018-02-10 21:31:26: WARNING[Main]: Field "height_min": Deprecated: new name is "y_min".
2018-02-10 21:31:26: WARNING[Main]: Field "height_max": Deprecated: new name is "y_max".
[Biome Lib] Registered a total of 0 surface types to be evaluated, spread
[Biome Lib] across 0 actions with air-checking and 0 actions without.
Use of deprecated function:	surfaceslist_aircheck
Use of deprecated function:	surfaceslist_no_aircheck
[Plants Lib] Registered a total of 0 surface types to be evaluated, spread
Use of deprecated function:	actionslist_aircheck
Use of deprecated function:	actionslist_no_aircheck
[Plants Lib] across 0 actions with air-checking and 0 actions without.
2018-02-10 21:31:27: ACTION[Main]:         .__               __                   __   
2018-02-10 21:31:27: ACTION[Main]:   _____ |__| ____   _____/  |_  ____   _______/  |_ 
2018-02-10 21:31:27: ACTION[Main]:  /     \|  |/    \_/ __ \   __\/ __ \ /  ___/\   __\
2018-02-10 21:31:27: ACTION[Main]: |  Y Y  \  |   |  \  ___/|  | \  ___/ \___ \  |  |  
2018-02-10 21:31:27: ACTION[Main]: |__|_|  /__|___|  /\___  >__|  \___  >____  > |__|  
2018-02-10 21:31:27: ACTION[Main]:       \/        \/     \/          \/     \/        
2018-02-10 21:31:27: ACTION[Main]: World at [TestWorld01]
2018-02-10 21:31:27: ACTION[Main]: Server for gameid="Lord-of-the-Test-master" listening on 0.0.0.0:30000.
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
Use of deprecated function:	blocklist_aircheck
Use of deprecated function:	blocklist_no_aircheck
^C2018-02-10 21:31:34: [Main]: INFO: signal_handler(): Ctrl-C pressed, shutting down.
2018-02-10 21:31:34: ACTION[Main]: [playereffects] Server shuts down. Rescuing data into playereffects.mt
2018-02-10 21:31:34: ACTION[Main]: [playereffects] Wrote playereffects data into TestWorld01/playereffects.mt.
[plants_lib] Stand by, playing out the rest of the aircheck mapblock log
Use of deprecated function:	blocklist_aircheck
(there are 0 entries)...
Use of deprecated function:	generate_block_with_air_checking
Use of deprecated function:	blocklist_aircheck
[plants_lib] Stand by, playing out the rest of the no-aircheck mapblock log
Use of deprecated function:	blocklist_aircheck
(there are 0 entries)...
Use of deprecated function:	generate_block_no_aircheck
Use of deprecated function:	blocklist_no_aircheck
[biome_lib] Stand by, playing out the rest of the aircheck mapblock log
(there are 0 entries)...
[biome_lib] Stand by, playing out the rest of the no-aircheck mapblock log
(there are 0 entries)...
2018-02-10 21:31:34: ACTION[Main]: [fishing] Server shuts down. saving trophies table
tom@tom-HP-ProBook-450-G3:~/Downloads/minetest-backport-0.4/bin$ 

User avatar
rubenwardy
Moderator
Posts: 6972
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: Errors Running Mesecons

by rubenwardy » Post

webmanoffesto wrote:Why do you recommend a backport? Is that a less than newest-stable version?
Backport is the latest stable (0.4.16) which some bug fixes on top
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

Post Reply

Who is online

Users browsing this forum: No registered users and 4 guests