Minetest 5.4.1

sfan5
Moderator
Posts: 4093
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5
Location: Germany

Minetest 5.4.1

by sfan5 » Post

Minetest 5.4.1 has been released.

Highlights

As a maintenance release it only contains bug fixes and no new features. These include:
  • Fix for "Connection timed out" error in singleplayer
  • Online content menu tab no longer crashes if certain mods are installed
  • Several server-side anticheat fixes

Changelog (5.4): https://dev.minetest.net/Changelog#5.3. ... 6.92_5.4.0
Source code: https://github.com/minetest/minetest/tree/5.4.1

Download


Mentos
Member
Posts: 22
Joined: Thu Apr 01, 2021 16:04

Re: Minetest 5.4.1

by Mentos » Post

Great!
Every update is welcome =)

deleted c0a803ab

Re: Minetest 5.4.1

by deleted c0a803ab » Post

Thank you very much for the update.

Only: 5.4.1 isn't listed at the changelog page.

Adnunano
Member
Posts: 43
Joined: Thu Feb 13, 2020 09:28

Re: Minetest 5.4.1

by Adnunano » Post

Does this new update uses irrlicht 1.9?
NfAPhpmGaVphBjK8NIr9Mit5xNW2emD2

sfan5
Moderator
Posts: 4093
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5
Location: Germany

Re: Minetest 5.4.1

by sfan5 » Post

No, just like 5.4.0 it still uses Irrlicht 1.8. In fact it won't even build with Irrlicht 1.9 or our fork.
Mods: Mesecons | WorldEdit | Nuke & Minetest builds for Windows (32-bit & 64-bit)

User avatar
Festus1965
Member
Posts: 4181
Joined: Sun Jan 03, 2016 11:58
GitHub: Festus1965
In-game: Festus1965 Thomas Thailand Explorer
Location: Thailand ChiangMai
Contact:

Re: Minetest 5.4.1

by Festus1965 » Post

strange behavior

I work now mostly with stable builds on Ubuntu PCs, or 5.2.0 Win64 in Windows

and didn't think anything special when yesterday morning 4 kids couldn't start there minetest on Ubuntu 18.04, we had to restart the pc without any special update then mtc 5.4.1 started normally.

Just now next day I had the same behavior on my rig Ubuntu 20.04 and mtc 5.4.1. I needed a PC restart, and tried also update && upgrade with no really update in system, graphic or mt today !
Yesterday there was an update NVIDIA 540 ?? but mtc run as normal
Now, after the just restart PC it works again like expected.

Just let you know, as this is not normal at all.
If you know yourself any changes or dependencies might have changed ... or others report similar.
Human has no future (climate change)
If urgend, you find me in Roblox (as CNXThomas)

SCat44
New member
Posts: 2
Joined: Thu Apr 29, 2021 08:47

Re: Minetest 5.4.1

by SCat44 » Post

Cool!

cathaya7d4
New member
Posts: 8
Joined: Sat Jan 27, 2018 04:22
GitHub: ferrumcccp

Re: Minetest 5.4.1

by cathaya7d4 » Post

How were translations imported this time?
I doubt whether the vandalism is fully removed.

User avatar
Wuzzy
Member
Posts: 4777
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Re: Minetest 5.4.1

by Wuzzy » Post

I believe for 5.4.1, the translations in Minetest were not updated at all. Which means the vandalized translations might still be in the latest official Minetest release.

sfan5
Moderator
Posts: 4093
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5
Location: Germany

Re: Minetest 5.4.1

by sfan5 » Post

New translations from Weblate were imported into 5.4.1 without updating the translation "sources" in Weblate.
The translation rollback was already done for 5.4.0 so there should be no vandalism in them.
Mods: Mesecons | WorldEdit | Nuke & Minetest builds for Windows (32-bit & 64-bit)

User avatar
Diomède
New member
Posts: 5
Joined: Wed Nov 18, 2020 08:53
In-game: Diomede

Re: Minetest 5.4.1

by Diomède » Post

Hey

I switched from 5.3.0 to 5.4.1 lately, and I had an issue with a mod I made using the "http_api.fetch()" function.
I get this error when the mod triggers the function :
attempt to index upvalue 'http_api' (a nil value)
Was there any change to this function ?
I see here that yes, but I can't find any further information than this sentence in the update list :
Add PUT and DELETE request + specific method value to HTTP API (Lejo)
I will have to stick to the 5.3.0 since it still works fine.
Any help would be appreciated.
Thank you :)

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

Re: Minetest 5.4.1

by rubenwardy » Post

Is your mod in the secure.http_mods setting? Please may you provide some example code
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
Diomède
New member
Posts: 5
Joined: Wed Nov 18, 2020 08:53
In-game: Diomede

Re: Minetest 5.4.1

by Diomède » Post

rubenwardy wrote:
Thu May 27, 2021 10:11
Is your mod in the secure.http_mods setting? Please may you provide some example code
My code is like this :
local http_api = minetest.request_http_api()
if not http_api then
print("ERROR: in minetest.conf, this mod must be in secure.http_mods!")
end
Then some lines later, I use the fetch function :
http_api.fetch({url = "http://" .. IP_ADDRESS .. "/simon_next_stage", timeout = 1}, simon_next_stage)
The IP_ADDRESS is a declared variable that connects Minetest to an ESP32 (a card managing wifi) and simon_next_stage is a function that gets triggered according to what's read on the "/simon_next_stage" page.

I don't know if it's useful, but I then use the "res" as a parameter like this :
function simon_next_stage(res)
-- Get the status of the button
local buttons_state = res.data
[...]
And it goes on without any function's method related stuff.

The structure was made by a friend, see his full code here :
https://github.com/MaximeChretien/minet ... cu_control

User avatar
Festus1965
Member
Posts: 4181
Joined: Sun Jan 03, 2016 11:58
GitHub: Festus1965
In-game: Festus1965 Thomas Thailand Explorer
Location: Thailand ChiangMai
Contact:

Re: Minetest 5.4.1

by Festus1965 » Post

hmm,
download from source 5.4.1 as zip,
unpack into minetest under ubuntu 20.04
cd minetest and cmake ... throw

Code: Select all

this statement may fall through [-Wimplicit-fallthrough=]
at:
* minetest/lib/lua/src/ldebug.c:268:22: - 268 | #define check(x) if (!(x)) return 0;
* minetest/lib/lua/src/llex.c:375:14: - 375 | else luaX_lexerror(ls, "invalid long string delimiter", TK_STRING); ... to L375 case
* minetest/lib/lua/src/loadlib.c:76:21: - 76 | lua_CFunction f = (lua_CFunction)dlsym(lib, sym);
* minetest/lib/lua/src/ltable.c:473:23: - 473 | case LUA_TNUMBER: ... 481 default, and 137 of (... and 140 lual_addvalue...
also

Code: Select all

In file included from /usr/include/string.h:495,
                 from /usr/include/c++/9/cstring:42,
                 from /home/thomas/minetest/src/util/srp.cpp:43:
In function ‘void* memcpy(void*, const void*, size_t)’,
    inlined from ‘int calculate_x(__mpz_struct*, SRP_HashAlgorithm, const unsigned char*, size_t, const char*, const unsigned char*, size_t)’ at /home/thomas/minetest/src/util/srp.cpp:432:8:
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:34:33: warning: ‘void* __builtin_memcpy(void*, const void*, long unsigned int)’ forming offset [65, 4294967295] is out of the bounds [0, 64] of object ‘ucp_hash’ with type ‘unsigned char [64]’ [-Warray-bounds]
   34 |   return __builtin___memcpy_chk (__dest, __src, __len, __bos0 (__dest));
      |          ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/thomas/minetest/src/util/srp.cpp: In function ‘int calculate_x(__mpz_struct*, SRP_HashAlgorithm, const unsigned char*, size_t, const char*, const unsigned char*, size_t)’:
/home/thomas/minetest/src/util/srp.cpp:443:16: note: ‘ucp_hash’ declared here
  443 |  unsigned char ucp_hash[SHA512_DIGEST_LENGTH];
oh 2 times later again ...
but build both tagets
if they run also ?

1. start on an near empty world with just some trechnic and techage test
warnings: as not in 5.2.0 ... see issue but not the solution or all 3 ? who to choose ?
as a lot

Code: Select all

Field "use_texture_alpha": Boolean values are deprecated; use the new choices
maybe from nixie_tubes as the mod loaded ready after them
but loool later then

Code: Select all

WARNING[Main]: Field "alpha": Obsolete, only limited compatibility provided; replaced by "use_texture_alpha"
so ??? WHAT

fail here:

Code: Select all

2021-06-12 09:07:50: ERROR[Main]: ModError: Failed to load and run script from /home/thomas/.minetest/mods/alphabet/init.lua:
2021-06-12 09:07:50: ERROR[Main]: /home/thomas/.minetest/mods/alphabet/init.lua:23: attempt to call field 'digprop_constanttime' (a nil value)
2021-06-12 09:07:50: ERROR[Main]: stack traceback:
2021-06-12 09:07:50: ERROR[Main]: 	/home/thomas/.minetest/mods/alphabet/init.lua:23: in main chunk
deactivated ...

and 2nd without alphabet
wow ... running, ... now with my original world (2nd server)

mhh with all the gimmicks like GMP, postgresqo and LuaJit server much faster start

and - important - loaded the original Map what failed under 5.3.0 ...

so I will give it a try to 5.4.1


added: 13.06.2021 morning

it is a bit wondering, as 5.4.1 was ready and announced on Sun Apr 11, 2021 00:12
so I thought until I started using it since yesterday there was near 2 months of reporting crashes
that obviously happen under 5.4.1 but didn't happen under 5.2.0 for months ... that should NOT be like that !
Human has no future (climate change)
If urgend, you find me in Roblox (as CNXThomas)

User avatar
Festus1965
Member
Posts: 4181
Joined: Sun Jan 03, 2016 11:58
GitHub: Festus1965
In-game: Festus1965 Thomas Thailand Explorer
Location: Thailand ChiangMai
Contact:

Re: Minetest 5.4.1

by Festus1965 » Post

another result:
* same system, same map, same mods and settings - gamer same positions (home)
* under 5.2.0 with 50 gamer : lag 0.75
* under 5.4.1 with 40 gamer : lag 0.79-0.87

result: 5.4.1 = lower performance (for my server)
Human has no future (climate change)
If urgend, you find me in Roblox (as CNXThomas)

User avatar
TenPlus1
Member
Posts: 3698
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: Minetest 5.4.1

by TenPlus1 » Post

@Festus1965 - how is the terminal output ? do you have many errors or warnings for the mods that you use ?

User avatar
Festus1965
Member
Posts: 4181
Joined: Sun Jan 03, 2016 11:58
GitHub: Festus1965
In-game: Festus1965 Thomas Thailand Explorer
Location: Thailand ChiangMai
Contact:

Re: Minetest 5.4.1

by Festus1965 » Post

TenPlus1 wrote:
Sun Jun 13, 2021 04:57
@Festus1965 - how is the terminal output ? do you have many errors or warnings for the mods that you use ?
only at the start a lot of

Code: Select all

Field "use_texture_alpha": Boolean values are deprecated; use the new choices
and every time when someone successful join this

Code: Select all

WARNING[ConnectionSend]: con(6/1) Packet quota used up for peer_id=152, was 64 pkts
got that a bit less with

Code: Select all

max_packets_per_iteration = 8192
as 2048, 4096 also reduce it already

but so far of the 2 crash, one solved, it run near normal,
BUT about 20% more lag in my case !
Human has no future (climate change)
If urgend, you find me in Roblox (as CNXThomas)

User avatar
TenPlus1
Member
Posts: 3698
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: Minetest 5.4.1

by TenPlus1 » Post

deprecation and warning messages do cause slight lag, dealing with the mods responsible will help.

User avatar
Festus1965
Member
Posts: 4181
Joined: Sun Jan 03, 2016 11:58
GitHub: Festus1965
In-game: Festus1965 Thomas Thailand Explorer
Location: Thailand ChiangMai
Contact:

Re: Minetest 5.4.1

by Festus1965 » Post

I don't believe you about this:
TenPlus1 wrote:
Sun Jun 13, 2021 13:06
deprecation and warning messages do cause slight lag, dealing with the mods responsible will help.
ok, ruben... also wrote there that might slow down ...

but to proof, tell me how and to what to change, I might try:

Code: Select all

Field "use_texture_alpha": Boolean values are deprecated; use the new choices
as of issue
and of this post
offered to use values
* clip or opaque (green = compat is required and can perfectly recreate the wanted behavior;)
or
* blend (grey = no compat required, works;)
I guess instead of old true and false settings, and so far blend seam to be the most 'green' solution.

checking the debug.txt I most find:

Code: Select all

WARNING[Main]: Texture "building_blocks_wglass.png" of building_blocks:slope_woodglass_inner_cut_half has transparency, assuming use_texture_alpha = "clip".
chosen 'clip',
so which one of this 3 I should go to change them then ?
And I see this debug comes up every time one of the values of 'use_texture_alpha' was true or false.


here my starting plot:

Code: Select all

[1.Mod] woodcutting = Mem start with: 443
[Mod] woodcutting (a9d4160/01.06.2018) - (1) end with 447 KB
[Mod] time (0.2.1/df05556/28.06.2014) - (2) end with 460 KB
[Mod] stats (cbd08c4/30.01.2014) - (3) end with 874 KB
[Mod] sightview (version/2018) - (4) end with 994 KB
[Mod] serveressentials ( / x.02.2020) - (5) end with 1040 KB
[Mod] server_news (73259c2/27.04.2020) - (6) end with 1044 KB
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] postool (aa612d2 / 03.04.2021) - (7) end with 667 KB
[Mod] minetest_remover -slow.lua- (/) - (8) end with 701 KB
[Mod] lamps (7f117ee/24.02.2017) - (9) end with 787 KB
[Mod] initlib (6ebdc53/24.02.2021) - (10) end with 832 KB
[Mod] plantlife / plantlife_i18n (4e32feaa/13.03.2019) - (11) end with 840 KB
[Mod] geocache  (fb39d72/25.12.2018) - (12) end with 849 KB
[Mod] EUban (1.2/e7f5c76/17.07.2020) - (13) with 1608 KB
[Mod] beerchat (d5b4a7e/27.05.2020) - (14) end with 1717 KB
[Mod] areas (66bd6a9/09.06.2020) - (15) end with 3786 KB
[Mod] markers (ad3c999/05.07.2017) - (16) end with 3880 KB
[Mod] technic aluminium / _armor (1bddcc7/25.06.2016) - (17) end with 3911 KB
[Mod] display_modpack / display_api  (8cd2d3d/13.06.2020) - (18) end with 4015 KB
[Mod] animalmaterials / animal_resources (11.08.2014) - (19) end with 4171 KB
[Mod] hec_nodemani () - (20) end with 4185 KB
[Mod] wiki (cc8533a/13.05.2017) - (21) end with 3485 KB
[Mod] tubelib2 (27daa8d/07.02.2021) - (22) end with 3617 KB
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] hyperloop (5b7d4ee/16.03.2021/V2.06) - (23) end with 4489 KB
[Mod] trash_can (c6ef1d7/11.04.2020) - (24) end with 4526 KB
[Mod] torches (e4c57c2/13.10.2016) - (25) end with 4553 KB
[Mod] toolranks (9ca5587/05.02.2020) - (26) end with 4590 KB
[Mod] srvstuff () - (27) end with 4593 KB
[Mod] spectator_mode (7aed82d/01.05.2020) - (28) end with 4604 KB
[Mod] spawn_command (c50d0aa/10.05.2021) - (29) end with 4611 KB
[Mod] smartshop (7.11/cf6817e/31.12.2018) - (30) end with 4664 KB
[Mod] signs_lib (?b0fac5ef/25.03.2021) - (31) - end with  4958 KB
[Mod] nyancat (c1fbe4c/22.02.2020) - (32) - end with  4970 KB
[Mod] more_chests (939c7ea/18.02.2020) - (33) end with 5064 KB
[Mod] digilines (434010b/20.10.2017) - (34) - end with  5350 KB
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] nixie_tubes (dddb52c4/05.06.2020) - (35) end with 5687 KB
[Mod] crafting (cf1ad1b/09.05.2017) - (36) - end with  6440 KB
[Mod] biomes_lib (10a10897/04.06.2020) - (37) - end with  6346 KB
[Mod] Plantlife / Poisonivy (modified) - (38) - end with  6258 KB
[Mod] Plantlife / molehill - (39) - end with  6163 KB
[Mod] Plantlife / ferns - (40) - end with  4525 KB
2021-06-12 15:01:52: WARNING[Main]: Field "alpha": Obsolete, only limited compatibility provided; replaced by "use_texture_alpha"
[Mod] basic_robot (13.06.2018) - (41) - end with  5102 KB
[Mod] balloon (13.06.2018) - (42) - end with  5125 KB
[Mod] alphabeth (12.05.2018) - (43) - end with  5415 KB
[Mod] plantlife / cafestuff (-/-) - (44) - end with  5445 KB
[Mod] xtraores (815fec1/23.06.2017) - (45) - end with 5868 KB
[Mod] mesecons (-/-) - (46) - end with 6073 KB
[Mod] travelnet (43e74f8/04.01.2020) 5.0.x - (47) end with 8054 KB
2021-06-12 15:01:52: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Protector] pvp_protect is disabled
[MOD] Protector Redo Tool: registered protector:tool for protector:protect
[MOD] Protector Redo Tool: registering alternative protector:protect2 for protector:protect
[Mod] protector (e618c6d/06.03.2020) - (48) - end with 9439 KB
[Mod] moremesecons / _playerkiller () - end with 9720 KB
[Mod] animalmaterials / animalmaterials (11.09.2014) - (49) with 10446 KB
[Mod] animalmaterials / cooking (13.06.2018) - (50) with 10428KB
[Mod] hec_vicount () - (51) - end with 10415 KB
[Mod] hec_nopvp () - (52) - end with 10409 KB
[Mod] hec_nether () - (53) - end with 9612 KB
[Mod] hec_honeypot () - (54) - end with 9558 KB
[Mod] farming (03d14b2/25.06.2020) - (55) end with 9617 KB
[Mod] Grasses [0.1.5] [dryplants] Loaded...
[Mod] Plantlife / Bushes-classic - Loaded.
[Mod] plantlife / Flowers - Loaded.
[Mod] moreores (3f62fd3/03.06.2020) - (56) end with 10556 KB
[Mod] basic_materials (c539463f /04.06.2020) - (57) end with 10654 KB
[Mod] pipeworks (9eefe9c7/10.06.2020) - (58) end with 12915 KB
[Mod] locks: loading locks:shared_locked_chest
[Mod] locks: loading locks:shared_locked_sign_wall
[Mod] locks: loading locks:door
[Mod] locks: loading locks:shared_locked_furnace
[Mod] locks (ed0db28/11.03.2019) - (59) end with 13045 KB
[Mod] arrow_signs (4.3/13.09.2016) - (60) end with 13085 KB
[Mod] currency (b82f9d42/19.06.2020) - (61) end with 13213 KB
[Mod] atm (4b075b1/05.06.2020) - (62) end with 13284 KB
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] basic_signs (29c8051b/04.06.2020) - (63) end with 13595 KB
[Mod] minecart (12a1c5a/20.03.2021) - (64) end with 13845 KB
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:01:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] technic / technic_worldgen (bc9a775/15.04.2021) - (65) end with 14361 KB
[Mod] unified_inventory (04b2edc/06.06.2020) - (66) end with 14706 KB
[Mod] moreores (b38be14/30.06.2020) - (67) end with 14750 KB
[Mod] u_skins (4d91ff3/31.03.2016) - (68) end with 15411 KB
[Mod] mining plus ( /27.08.2016) - end with 15508 KB
[Mod] mail (2d087ea/30.04.2020) - (69) end with 15558 KB
[Mod] fancy_vend (0b16a29 / 31.10.2020) - (70) end with 15734 KB
[Mod] homedecor_modpack / common (5aecf5f2 /05.06.2020) - (71) end with 15877 KB
[Mod] homedecor_modpack / itemframes (5aecf5f2 /05.06.2020) - (72) end with 15918 KB
[Mod] homedecor_modpack / inbox (5aecf5f2 /05.06.2020) - (73) end with 15935 KB
[Mod] homedecor_modpack / tables (5aecf5f2 /05.06.2020) - (74) end with 16053 KB
[Mod] homedecor_modpack / laundry (5aecf5f2/05.06.2020) - (75) end with 16076 KB
[Mod] homedecor_modpack / furnituere_medieval (5aecf5f2 /05.06.2020) - (76) end with 16096 KB
[Mod] homedecor_modpack / electrical (5aecf5f2 /05.06.2020) - (77) end with 16130 KB
[Mod] homedecor_modpack / coweb (5aecf5f2 /05.06.2020) - (78) end with 16153 KB
[Mod] UnifiedDyes (ff3b2d30/21.04.2021) - (79) end with 17297 KB
[Mod] homedecor_modpack / books (5aecf5f2 /05.06.2020) - (80) end with 17360 KB
[Mod] homedecor_modpack / bedroom (5aecf5f2 /05.06.2020) - (81) end with 17707 KB
[Mod] homedecor_modpack / computer (5aecf5f2 /05.06.2020) - (82) end with 17883 KB
[Mod] mobs_redo (dfdd55848d/01.08.2020) - (83) end with 18211 KB
[Mod] mobs_monster (a39eec8822/08.07.2020) - (84) end with 18391 KB
[Mod] mobs_animal (479a9f2fa2/08.07.2020) - (85) end with 18777 KB
--> [Mod] xp-redo / chatcommand.lua - edited by Thomas 23.06.2020
[MOD] Protector Redo Tool: registered protector:tool for xp_redo:protector
[Mod] xp_redo (081a016/15.03.2021) - (86) end with 19000 KB
[Mod] bows (335db7a411/12.06.2020) - (87) end with 19067 KB
[Mod] mobs_sky / bat (acfdf6af77/08.05.2020) - (88) end with 19103 KB
[Mod] hec_diamaster (-/-) - (89) end with 19120 KB
[Mapserver] read settings from 'mapserver.json'
[Mapserver] starting mapserver-bridge with endpoint: http://192.168.65.213:8080
[Mod] mapserver_mod (f6f3cd4/26.04.2020) - end with 19222 KB
[Mod] beacon (bb4d0a9/02.06.2020) - (90) end with 19429 KB
2021-06-12 15:01:54: WARNING[Main]: No craft recipe matches input
2021-06-12 15:01:54: WARNING[Main]: No craft recipe matches input
2021-06-12 15:01:54: WARNING[Main]: No craft recipe matches input
2021-06-12 15:01:54: WARNING[Main]: No craft recipe matches input
2021-06-12 15:01:54: WARNING[Main]: No craft recipe matches input
2021-06-12 15:01:54: WARNING[Main]: No craft recipe matches input
2021-06-12 15:01:54: WARNING[Main]: No craft recipe matches input
[Mod] technic / technic (bc9a775/15.04.2021) - (91) end with 15859 KB
[Mod] digtron (843dbd2/08.08.2020) - (92) end with 15990 KB
[Mod] technic aluminium / bauxite () - loaded - with 3 KB
[Mod] technic aluminium / alumina (1bddcc7/25.06.2016) - with 16585
[Mod] technic aluminium / _sapphire () - (93) end with 16605 KB
[Mod] technic aluminium / _ruby () - (94) end with 16625 KB
[Mod] technic aluminium / aluminium (1bddcc7/25.06.2016) - with 16640 KB
[Mod] technic aluminium / _tools () - (95) end with 16657 KB
[Mod] technic aluminium / _alloys (1bddcc7/25.06.2016) - with 16679
[Mod] technic aluminium / _machines (1bddcc7/25.06.2016) - end with 16695 KB
[Mod] technic / technic_cnc (bc9a775/15.04.2021) - (96) end with 18332 KB
[Mod] technic / technic_chests (bc9a775/15.04.2021) - (97) end with 18594 KB
[Mod] technic / technic_wrench (bc9a775/15.04.2021) - (98) end with 18812 KB
[Mod] homedecor_modpack / trash_cans (5aecf5f2 /05.06.2020) - (99) end with 18899 KB
2021-06-12 15:01:54: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] homedecor_modpack / roofing (5aecf5f2 /05.06.2020) - (100) end with 18995 KB
[Mod] homedecor_modpack / picture_and_paintings (5aecf5f2 /05.06.2020) - (101) end with 19115 KB
[Mod] homedecor_modpack / gastronomy (5aecf5f2 /05.06.2020) - (102) end with 19212 KB
[Mod] homedecor_modpack / foyer (5aecf5f2 /05.06.2020) - (103) end with 19250 KB
[Mod] moreblocks (f8314c3/07.06.2020) - (104) end with 35142 KB
[Mod] xdecor (8acc028/03.03.2021) - (105) end with 35207 KB
2021-06-12 15:02:07: WARNING[Main]: Node scifi_nodes:white2 has a palette, but not a suitable paramtype2.
2021-06-12 15:02:07: WARNING[Main]: Node scifi_nodes:white has a palette, but not a suitable paramtype2.
2021-06-12 15:02:07: WARNING[Main]: Node scifi_nodes:whiteoct has a palette, but not a suitable paramtype2.
2021-06-12 15:02:07: WARNING[Main]: Node scifi_nodes:whitetile has a palette, but not a suitable paramtype2.
[Mod] scifi_nodes (1d42e59/20.03.2021) - (106) end with 49254 KB
[Mod] nether (7939161/08.02.2020) - (107) end with 49455 KB
[Mod] moretrees (d521e347/01.12.2018) - (108) end with 54292 KB
[Mod] flowerpot (f3d5285 /15.02.2020) - (109) end with 54567 KB
[Mod] biofuel (6ad39ec/09.01.2021) - (110) end with 54653 KB
[Mod] trunks (0.1.4/-) - (111) end with 54825 KB
[Mod] Wood Soils [0.0.9] [woodsoils] Loaded...
[Mod] moreores (8cd2d3d/01.04.2019) - (112) end with 58227 KB
[MOD] Ethereal - Farming Redo detected and in use
[Mod] Ethereal (8b95cec081 /18.07.2020) - (113) end with 61847 KB
[Mod] bonemeal (bf7d9d6652/26.05.2020) - (114) end with 61935 KB
[Mod] cool_trees (c9785b9/22.05.2020) - end with 62487 KB
[Mod] cool_trees (c9785b9/22.05.2020) - end with 62735 KB
[Mod] 3d_armor / 3d_armor (1d22612/05.03.2019) 5.0.x - (115) end with 63233 KB
[Mod] spacesuit (47863d4/12.02.2020) - (116) end with 63269 KB
[Mod] Moderator armor (35dfe80/30.11.2018) - (117) end with 63283 KB
[Mod] lavastuff (678f111 / 28.02.2020) - (118) end with 63514 KB
[Mod] hud_hunger / hud (?) - (119) end with 63659 KB
[Mod] hud_hunger / hunger (?) - (120) end with 63727 KB
[Mod] 3d_armor / wieldview (1d22612/05.03.2019) 5.0.x - (121) end with 63738 KB
[Mod] 3d_armor / technic_armor (694642f/11.02.2018) - (122) end with 63829 KB
[Mod] 3d_armor / shields (1d22612/05.03.2019) 5.0.x - (123) end with 63881 KB
[Mod]  - (124) end with 63924 KB
[Mod] 3d_armor / hazmat_suit (01.2018) 0.4.x - (125) end with 63946 KB
[Mod] 3d_armor / 3d_armor_ui (1d22612/05.03.2019) 5.0.x - (126) end with 63953 KB
[Mod] 3d_armor / 3d_armor_stand (1d22612/05.03.2019) 5.0.x - (127) end with 63999 KB
[Mod] 3d_armor / 3d_armor_sfinv (1d22612/05.03.2019) 5.0.x - (128) end with 64003 KB
[Mod] technic / concrete (bc9a775/15.04.2021) - (129) end with 64197 KB
2021-06-12 15:02:46: WARNING[Main]: Not registering alias, item with same name is already defined: technic:panel_concrete_bottom -> technic:panel_concrete
2021-06-12 15:02:46: WARNING[Main]: Not registering alias, item with same name is already defined: technic:micro_concrete_bottom -> technic:micro_concrete
[Mod] technic / extranodes (bc9a775/15.04.2021) - (130) end with 61726 KB
[Mod] homedecor_modpack / furniture (9ffe2b7d /29.03.2021) - (131) end with 61640 KB
[Mod] homedecor_modpack / electronics (5aecf5f2 /05.06.2020) - (132) end with 61013 KB
[Mod] homedecor_modpack / plasmascreen (5aecf5f2 /05.06.2020) - (133) end with 60743 KB
2021-06-12 15:02:50: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:50: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:50: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] homedecor_modpack / 3d_extras (5aecf5f2 /05.06.2020) - (134) end with 60026 KB
[Mod] homedecor_modpack / building_blocks (5aecf5f2 /05.06.2020) - (135) end with 50399 KB
2021-06-12 15:02:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:53: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] homedecor_modpack / windows_and_treetment (5aecf5f2 /05.06.2020) - (136) end with 50732 KB
[Mod] homedecor_modpack / office (5aecf5f2 /05.06.2020) - (137) end with 50781 KB
2021-06-12 15:02:54: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:54: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] homedecor_modpack / _misc (5aecf5f2/05.06.2020) - (138) end with 51453 KB
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] homedecor_modpack / doors_and_gates (5aecf5f2 /05.06.2020) - (139) end with 52035 KB
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:02:56: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:glowlight_half_max -> homedecor:glowlight_half_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:glowlight_quarter_max -> homedecor:glowlight_quarter_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:glowlight_small_cube_max -> homedecor:glowlight_small_cube_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:plasma_lamp_max -> homedecor:plasma_lamp_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:ground_lantern_max -> homedecor:ground_lantern_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:hanging_lantern_max -> homedecor:hanging_lantern_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:ceiling_lantern_max -> homedecor:ceiling_lantern_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:lattice_lantern_large_max -> homedecor:lattice_lantern_large_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:lattice_lantern_small_max -> homedecor:lattice_lantern_small_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:desk_lamp_max -> homedecor:desk_lamp_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:ceiling_lamp_max -> homedecor:ceiling_lamp_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:table_lamp_max -> homedecor:table_lamp_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:standing_lamp_max -> homedecor:standing_lamp_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: 3dforniture:table_lamp_max -> homedecor:table_lamp_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:rope_light_on_floor_off -> homedecor:rope_light_on_floor_0
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:rope_light_on_ceiling_off -> homedecor:rope_light_on_ceiling_0
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:plasma_ball_off -> homedecor:plasma_ball_0
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:rope_light_on_floor_on -> homedecor:rope_light_on_floor_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:rope_light_on_ceiling_on -> homedecor:rope_light_on_ceiling_14
2021-06-12 15:03:00: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:plasma_ball_on -> homedecor:plasma_ball_14
[Mod] homedecor_modpack / lighting (0268767a/29.03.2021) - (140) end with 54966 KB
[Mod] homedecor_modpack / kitchen (5aecf5f2/05.06.2020) - (141) end with 55188 KB
[Mod] homedecor_modpack / wardrobe (5aecf5f2 /05.06.2020) - (142) end with 55212 KB
[Mod] homedecor_modpack / exterior (5aecf5f2 /05.06.2020) - (143) end with 55335 KB
[Mod] homedecor_modpack / clocks (5aecf5f2 /05.06.2020) - (144) end with 55372 KB
[Mod] homedecor_modpack / climate_control (5aecf5f2 /05.06.2020) - (145) end with 55417 KB
[Mod] homedecor_modpack / bathroom (5aecf5f2 /05.06.2020) - (146) end with 57293 KB
[Mod] hangglider (54afc34 / 14.01.2021) - (147) end with 57327 KB
2021-06-12 15:03:06: WARNING[Main]: Field "use_texture_alpha": Boolean values are deprecated; use the new choices
[Mod] homedecor_modpack / lavalamp (5aecf5f2 /05.06.2020) - (148) end with 57917 KB
[Mod] homedecor_modpack / seating- (5aecf5f2 /05.06.2020) - (149) end with 58430 KB
[Mod] homedecor_modpack / fake_fire (5aecf5f2 /05.06.2020) - (150) end with 58919 KB
        .__               __                   __   
  _____ |__| ____   _____/  |_  ____   _______/  |_ 
 /     \|  |/    \_/ __ \   __\/ __ \ /  ___/\   __\
|  Y Y  \  |   |  \  ___/|  | \  ___/ \___ \  |  |  
|__|_|  /__|___|  /\___  >__|  \___  >____  > |__|  
      \/        \/     \/          \/     \/        
2021-06-12 15:03:16: ACTION[Main]: World at [/home/thomas/.minetest/worlds/CelinesWildesThailand]
2021-06-12 15:03:16: ACTION[Main]: Server for gameid="BrainCraft" listening on 192.168.65.213:30001.
[Biome Lib] Registered a total of 43 surface types to be evaluated, spread
[Biome Lib] across 45 actions with air-checking and 3 actions without.
2021-06-12 15:03:16: ACTION[Server]: Announcing start to servers.minetest.net
and I think the Warning belongs to the after log-print mod as then:
* postool (2) - found to settings in tool.lua #167, 210 - changed fixed = 'clip'
* hyperloop (1) - tubecrowbar.lua #112
* nixie_tube (130)
* ...
searchmonkey tell me here 26 lua-files with all 52 times "use_texture_alpha = true," (+ 2 files, and 4 lines changed yet)
and one with 2 lines set to false in monitoring/lua.api.txt ?
... most of them in mod techage, that is not active yet

still have to find that on only alpha ...; found in basic_robot/init.lua

Code: Select all

minetest.register_node("basic_robot:spawner", {
	description = "Spawns robot",
	tiles = {"cpu.png"},
	groups = {cracky=3, mesecon_effector_on = 1},
	drawtype = "allfaces",
	paramtype = "light",
	param1=1,
	walkable = true,
	alpha = 150,
	after_place_node = function(pos, placer)
so that 'alpha = 150' have to get then "use_texture_alpha = 'clip'" ? or just bad luck same variable name ...

stop here, I will edit further, check this 3 mods first if that is true,
or I have to search this variable via searchmonkey in the mod folder

and now there is another think coming up in my brain:
isn't it better to set a parameter in minetest.conf like 'use_texture_alpha = clip' that we might be able to change this settings from one position, as change about 300 lines, and stuck then on that setting ?

better ?
how ?
Human has no future (climate change)
If urgend, you find me in Roblox (as CNXThomas)

User avatar
Festus1965
Member
Posts: 4181
Joined: Sun Jan 03, 2016 11:58
GitHub: Festus1965
In-game: Festus1965 Thomas Thailand Explorer
Location: Thailand ChiangMai
Contact:

Re: Minetest 5.4.1

by Festus1965 » Post

but anyway, this is my starting log after all changed:
the use_texture_alpha boolean are all gone ...
first step al true/false changed to

Code: Select all

use_texture_alpha = 'clip'
= running,
then after that changed to

Code: Select all

use_texture_alpha = minetest.setting_get("use_texture_alpha"),
waiting for restart, and in .conf set to 'blend' for next test

but
* biofuels had intern set to blend
* scify_nodes also to blend
changed them also to read from minetest.conf ... still set 'clip' there = 71 calls like this in all mods at me

Code: Select all

2021-06-14 08:38:57: [Main]: Using game specified by --gameid on the command line
[1.Mod] woodcutting = Mem start with: 443
[Mod] woodcutting (a9d4160/01.06.2018) - (1) end with 447 KB
[Mod] time (0.2.1/df05556/28.06.2014) - (2) end with 460 KB
[Mod] stats (cbd08c4/30.01.2014) - (3) end with 924 KB
[Mod] sightview (version/2018) - (4) end with 1044 KB
[Mod] serveressentials ( / x.02.2020) - (5) end with 1089 KB
[Mod] server_news (73259c2/27.04.2020) - (6) end with 1094 KB
[Mod] saver_lua (/) - (7) end with 631 KB
[Mod] postool (aa612d2 / 03.04.2021) - (8) end with 715 KB
[Mod] minetest_remover -slow.lua- (/) - (9) end with 749 KB
[Mod] lcdlib (/) - (10) end with 800 KB
[Mod] lamps (7f117ee/24.02.2017) - (11) end with 834 KB
[Mod] initlib (6ebdc53/24.02.2021) - (12) end with 879 KB
[Mod] pantlife / plantlife_i118n (/) - (13) end with 887 KB
[Mod] geocache  (fb39d72/25.12.2018) - (14) end with 896 KB
[Mod] EUban (1.2/e7f5c76/17.07.2020) - (15) with 1633 KB
[Mod] beerchat (d5b4a7e/27.05.2020) - (16) end with 1743 KB
[Mod] areas (66bd6a9/09.06.2020) - (17) end with 3810 KB
[Mod] markers (ad3c999/05.07.2017) - (18) end with 3902 KB
[Mod] technic aluminium / _armor (1bddcc7/25.06.2016) - (19) end with 3933 KB
[Mod] pantlife / junglegrass (/) - (20) end with 3934 KB
[Mod] display_modpack / display_api  (8cd2d3d/13.06.2020) - (21) end with 4037 KB
[Mod] animalmaterials / animal_resources (11.08.2014) - (22) end with 4044 KB
[Mod] hec_nodemani () - (23) end with 4048 KB
[Mod] wiki (cc8533a/13.05.2017) - (24) end with 3707 KB
[Mod] tubelib2 (27daa8d/07.02.2021) - (25) end with 3839 KB
[Mod] hyperloop (5b7d4ee/16.03.2021/V2.06) - (26) end with 4735 KB
[Mod] trash_can (c6ef1d7/11.04.2020) - (27) end with 4772 KB
[Mod] torches (e4c57c2/13.10.2016) - (28) end with 4799 KB
[Mod] toolranks (9ca5587/05.02.2020) - (29) end with 4839 KB
[Mod] srvstuff () - (30) end with 4841 KB
[Mod] spectator_mode (7aed82d/01.05.2020) - (31) end with 4853 KB
[Mod] spawn_command (c50d0aa/10.05.2021) - (32) end with 4859 KB
[Mod] smartshop (7.11/cf6817e/31.12.2018) - (33) end with 4913 KB
[Mod] signs_lib (?b0fac5ef/25.03.2021) - (34) - end with  5204 KB
[Mod] nyancat (c1fbe4c/22.02.2020) - (35) - end with  5215 KB
[Mod] more_chests (939c7ea/18.02.2020) - (36) end with 5309 KB
[Mod] digilines (434010b/20.10.2017) - (37) - end with  5598 KB
[Mod] nixie_tubes (dddb52c4/05.06.2020) - (38) end with 5935 KB
[Mod] crafting (cf1ad1b/09.05.2017) - (39) - end with  4823 KB
[Mod] biomes_lib (10a10897/04.06.2020) - (40) - end with  4901 KB
[Mod] pantlife / youngtrees (/) - (41) end with 4925 KB
[Mod] pantlife / poisonivy (/) - (42) end with 4940 KB
[Mod] pantlife / molehills 0.0.3 (/) - (43) end with 4954 KB
[Mod] pantlife / ferns (0.2.1/) - (44) end with 5086 KB
[Mod] pantlife / bushes (/) - (45) end with 5123 KB
[Mod] basic_robot (13.06.2018) - (46) - end with  5666 KB
[Mod] balloon (13.06.2018) - (47) - end with  5689 KB
[Mod] alphabeth (12.05.2018) - (48) - end with  5980 KB
[Mod] pantlife / cavestuff (0.0.3/) - (49) end with 6008 KB
[Mod] xtraores (815fec1/23.06.2017) - (50) - end with 6429 KB
[Mod] mesecons (6579351/10.04.2021) - (51) - end with 6632 KB
[Mod] travelnet (43e74f8/04.01.2020) 5.0.x - (52) end with 8613 KB
[Protector] pvp_protect is disabled
[MOD] Protector Redo Tool: registered protector:tool for protector:protect
[MOD] Protector Redo Tool: registering alternative protector:protect2 for protector:protect
[Mod] protector (e618c6d/06.03.2020) - (53) - end with 9995 KB
[Mod] moremesecons / _playerkiller () - end with 10277 KB
[Mod] animalmaterials / animalmaterials (11.09.2014) - (54) with 8006 KB
[Mod] animalmaterials / cooking (13.06.2018) - (55) with 8032KB
[Mod] hec_vicount () - (56) - end with 8038 KB
[Mod] hec_nopvp () - (57) - end with 8056 KB
[Mod] hec_nether () - (58) - end with 8117 KB
[Mod] hec_honeypot () - (59) - end with 8125 KB
[Mod] farming (03d14b2/25.06.2020) - (60) end with 10107 KB
[Mod] pantlife / grasses (0.1.5/) - (61) end with 10323 KB
[Mod] pantlife / bushes-classic (/) - (62) end with 10421 KB
[Mod] pantlife / flowers_plus (/) - (63) end with 10594 KB
[Mod] moreores (3f62fd3/03.06.2020) - (64) end with 11047 KB
[Mod] basic_materials (c539463f /04.06.2020) - (65) end with 11145 KB
[Mod] pipeworks (9eefe9c7/10.06.2020) - (66) end with 13409 KB
[Mod] locks: loading locks:shared_locked_chest
[Mod] locks: loading locks:shared_locked_sign_wall
[Mod] locks: loading locks:door
[Mod] locks: loading locks:shared_locked_furnace
[Mod] locks (ed0db28/11.03.2019) - (67) end with 13539 KB
[Mod] arrow_signs (4.3/13.09.2016) - (68) end with 13580 KB
[Mod] currency (b82f9d42/19.06.2020) - (69) end with 13708 KB
[Mod] atm (4b075b1/05.06.2020) - (70) end with 13777 KB
[Mod] basic_signs (29c8051b/04.06.2020) - (71) end with 14082 KB
[Mod] minecart (12a1c5a/20.03.2021) - (72) end with 14333 KB
[Mod] technic / technic_worldgen (bc9a775/15.04.2021) - (73) end with 14851 KB
[Mod] unified_inventory (04b2edc/06.06.2020) - (74) end with 15197 KB
[Mod] unified_inventory_plus (b38be14/30.06.2020) - (75) end with 15242 KB
[Mod] u_skins (4d91ff3/31.03.2016) - (76) end with 15899 KB
[Mod] mining plus ( /27.08.2016) - end with 15994 KB
[Mod] mail (2d087ea/30.04.2020) - (77) end with 16044 KB
[Mod] fancy_vend (0b16a29 / 31.10.2020) - (78) end with 16219 KB
[Mod] homedecor_modpack / common (5aecf5f2 /05.06.2020) - (79) end with 16363 KB
[Mod] homedecor_modpack / itemframes (5aecf5f2 /05.06.2020) - (80) end with 16404 KB
[Mod] homedecor_modpack / inbox (5aecf5f2 /05.06.2020) - (81) end with 16421 KB
[Mod] homedecor_modpack / tables (5aecf5f2 /05.06.2020) - (82) end with 16539 KB
[Mod] homedecor_modpack / laundry (5aecf5f2/05.06.2020) - (83) end with 16562 KB
[Mod] homedecor_modpack / furnituere_medieval (5aecf5f2 /05.06.2020) - (84) end with 16582 KB
[Mod] homedecor_modpack / electrical (5aecf5f2 /05.06.2020) - (85) end with 16616 KB
[Mod] homedecor_modpack / coweb (5aecf5f2 /05.06.2020) - (86) end with 16639 KB
[Mod] UnifiedDyes (ff3b2d30/21.04.2021) - (87) end with 17797 KB
[Mod] homedecor_modpack / books (5aecf5f2 /05.06.2020) - (88) end with 17860 KB
[Mod] homedecor_modpack / bedroom (5aecf5f2 /05.06.2020) - (89) end with 18211 KB
[Mod] homedecor_modpack / computer (5aecf5f2 /05.06.2020) - (90) end with 18389 KB
[Mod] mobs_redo (dfdd55848d/01.08.2020) - (91) end with 18184 KB
[Mod] mobs_monster (a39eec8822/08.07.2020) - (92) end with 16158 KB
[Mod] mobs_animal (479a9f2fa2/08.07.2020) - (93) end with 13542 KB
--> [Mod] xp-redo / chatcommand.lua - edited by Thomas 23.06.2020
[MOD] Protector Redo Tool: registered protector:tool for xp_redo:protector
[Mod] xp_redo (081a016/15.03.2021) - (94) end with 13717 KB
[Mod] bows (335db7a411/12.06.2020) - (95) end with 13784 KB
[Mod] mobs_fish (/) - (96) end with 13809 KB
[Mod] mobs_sky / bat (acfdf6af77/08.05.2020) - (97) end with 13823 KB
[Mod] hec_diamaster (-/-) - (98) end with 13839 KB
[Mapserver] read settings from 'mapserver.json'
[Mapserver] starting mapserver-bridge with endpoint: http://192.168.65.213:8080
[Mod] mapserver_mod (f6f3cd4/26.04.2020) - end with 13942 KB
[Mod] beacon (bb4d0a9/02.06.2020) - (99) end with 14147 KB
2021-06-14 08:38:58: WARNING[Main]: No craft recipe matches input
2021-06-14 08:38:58: WARNING[Main]: No craft recipe matches input
2021-06-14 08:38:58: WARNING[Main]: No craft recipe matches input
2021-06-14 08:38:58: WARNING[Main]: No craft recipe matches input
2021-06-14 08:38:58: WARNING[Main]: No craft recipe matches input
2021-06-14 08:38:58: WARNING[Main]: No craft recipe matches input
2021-06-14 08:38:58: WARNING[Main]: No craft recipe matches input
[Mod] technic / technic (bc9a775/15.04.2021) - (100) end with 16748 KB
[Mod] digtron (843dbd2/08.08.2020) - (101) end with 16878 KB
[Mod] technic aluminium / bauxite () - (102) end with 17469 KB
[Mod] technic aluminium / alumina (1bddcc7/25.06.2016) - with 17474
[Mod] technic aluminium / _sapphire () - (103) end with 17495 KB
[Mod] technic aluminium / _ruby () - (104) end with 17514 KB
[Mod] technic aluminium / aluminium (1bddcc7/25.06.2016) - with 17529 KB
[Mod] technic aluminium / _tools () - (105) end with 17546 KB
[Mod] technic aluminium / _alloys (1bddcc7/25.06.2016) - with 17569
[Mod] technic aluminium / _machines (1bddcc7/25.06.2016) - end with 17585 KB
[Mod] technic / technic_cnc (bc9a775/15.04.2021) - (106) end with 19221 KB
[Mod] technic / technic_chests (bc9a775/15.04.2021) - (107) end with 19485 KB
[Mod] technic / technic_wrench (bc9a775/15.04.2021) - (108) end with 19705 KB
[Mod] homedecor_modpack / trash_cans (5aecf5f2 /05.06.2020) - (109) end with 19793 KB
[Mod] homedecor_modpack / roofing (5aecf5f2 /05.06.2020) - (110) end with 19886 KB
[Mod] homedecor_modpack / picture_and_paintings (5aecf5f2 /05.06.2020) - (111) end with 20006 KB
[Mod] homedecor_modpack / gastronomy (5aecf5f2 /05.06.2020) - (112) end with 20103 KB
[Mod] homedecor_modpack / foyer (5aecf5f2 /05.06.2020) - (113) end with 20141 KB
[Mod] moreblocks (f8314c3/07.06.2020) - (114) end with 25858 KB
[Mod] xdecor (8acc028/03.03.2021) - (115) end with 36754 KB
2021-06-14 08:39:10: WARNING[Main]: Node scifi_nodes:white2 has a palette, but not a suitable paramtype2.
2021-06-14 08:39:10: WARNING[Main]: Node scifi_nodes:white has a palette, but not a suitable paramtype2.
2021-06-14 08:39:10: WARNING[Main]: Node scifi_nodes:whiteoct has a palette, but not a suitable paramtype2.
2021-06-14 08:39:10: WARNING[Main]: Node scifi_nodes:whitetile has a palette, but not a suitable paramtype2.
[Mod] scifi_nodes (1d42e59/20.03.2021) - (116) end with 50797 KB
[Mod] nether (7939161/08.02.2020) - (117) end with 50998 KB
[Mod] moretrees (d521e347/01.12.2018) - (118) end with 55829 KB
[Mod] flowerpot (f3d5285 /15.02.2020) - (119) end with 56108 KB
[Mod] biofuel (6ad39ec/09.01.2021) - (120) end with 56196 KB
[Mod] trunks (0.1.4/-) - (121) end with 56368 KB
[Mod] pantlife / woodsoils (0.0.9/) - (122) end with 56403 KB
[Mod] pantlife / nature-classic (/) - (123) end with 56432 KB
[MOD] Ethereal - Farming Redo detected and in use
[Mod] Ethereal (8b95cec081 /18.07.2020) - (124) end with 52604 KB
[Mod] bonemeal (bf7d9d6652/26.05.2020) - (125) end with 51858 KB
[Mod] cool_trees (c9785b9/22.05.2020) - end with 48697 KB
[Mod] cool_trees (c9785b9/22.05.2020) - end with 47647 KB
[Mod] 3d_armor / 3d_armor (1d22612/05.03.2019) 5.0.x - (126) end with 48082 KB
[Mod] spacesuit (47863d4/12.02.2020) - (127) end with 48118 KB
[Mod] Moderator armor (35dfe80/30.11.2018) - (128) end with 48131 KB
[Mod] lavastuff (678f111 / 28.02.2020) - (129) end with 48172 KB
[Mod] hud_hunger / hud (?) - (130) end with 48314 KB
[Mod] hud_hunger / hunger (?) - (131) end with 48381 KB
[Mod] 3d_armor / wieldview (1d22612/05.03.2019) 5.0.x - (132) end with 48393 KB
[Mod] 3d_armor / technic_armor (694642f/11.02.2018) - (133) end with 48482 KB
[Mod] 3d_armor / shields (1d22612/05.03.2019) 5.0.x - (134) end with 48535 KB
[Mod]  - (135) end with 48578 KB
[Mod] 3d_armor / hazmat_suit (01.2018) 0.4.x - (136) end with 48600 KB
[Mod] 3d_armor / 3d_armor_ui (1d22612/05.03.2019) 5.0.x - (137) end with 48607 KB
[Mod] 3d_armor / 3d_armor_stand (1d22612/05.03.2019) 5.0.x - (138) end with 48654 KB
[Mod] 3d_armor / 3d_armor_sfinv (1d22612/05.03.2019) 5.0.x - (139) end with 48658 KB
[Mod] technic / concrete (bc9a775/15.04.2021) - (140) end with 48851 KB
2021-06-14 08:39:52: WARNING[Main]: Not registering alias, item with same name is already defined: technic:panel_concrete_bottom -> technic:panel_concrete
2021-06-14 08:39:52: WARNING[Main]: Not registering alias, item with same name is already defined: technic:micro_concrete_bottom -> technic:micro_concrete
[Mod] technic / extranodes (bc9a775/15.04.2021) - (141) end with 50871 KB
[Mod] homedecor_modpack / furniture (9ffe2b7d /29.03.2021) - (142) end with 50880 KB
[Mod] homedecor_modpack / electronics (5aecf5f2 /05.06.2020) - (143) end with 50945 KB
[Mod] homedecor_modpack / plasmascreen (5aecf5f2 /05.06.2020) - (144) end with 50972 KB
[Mod] homedecor_modpack / 3d_extras (5aecf5f2 /05.06.2020) - (145) end with 51045 KB
[Mod] homedecor_modpack / building_blocks (5aecf5f2 /05.06.2020) - (146) end with 52549 KB
[Mod] homedecor_modpack / windows_and_treetment (5aecf5f2 /05.06.2020) - (147) end with 52875 KB
[Mod] homedecor_modpack / office (5aecf5f2 /05.06.2020) - (148) end with 52925 KB
[Mod] homedecor_modpack / _misc (5aecf5f2/05.06.2020) - (149) end with 53827 KB
[Mod] homedecor_modpack / doors_and_gates (5aecf5f2 /05.06.2020) - (150) end with 54409 KB
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:glowlight_half_max -> homedecor:glowlight_half_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:glowlight_quarter_max -> homedecor:glowlight_quarter_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:glowlight_small_cube_max -> homedecor:glowlight_small_cube_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:plasma_lamp_max -> homedecor:plasma_lamp_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:ground_lantern_max -> homedecor:ground_lantern_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:hanging_lantern_max -> homedecor:hanging_lantern_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:ceiling_lantern_max -> homedecor:ceiling_lantern_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:lattice_lantern_large_max -> homedecor:lattice_lantern_large_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:lattice_lantern_small_max -> homedecor:lattice_lantern_small_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:desk_lamp_max -> homedecor:desk_lamp_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:ceiling_lamp_max -> homedecor:ceiling_lamp_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:table_lamp_max -> homedecor:table_lamp_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:standing_lamp_max -> homedecor:standing_lamp_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: 3dforniture:table_lamp_max -> homedecor:table_lamp_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:rope_light_on_floor_off -> homedecor:rope_light_on_floor_0
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:rope_light_on_ceiling_off -> homedecor:rope_light_on_ceiling_0
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:plasma_ball_off -> homedecor:plasma_ball_0
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:rope_light_on_floor_on -> homedecor:rope_light_on_floor_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:rope_light_on_ceiling_on -> homedecor:rope_light_on_ceiling_14
2021-06-14 08:40:08: WARNING[Main]: Not registering alias, item with same name is already defined: homedecor:plasma_ball_on -> homedecor:plasma_ball_14
[Mod] homedecor_modpack / lighting (0268767a/29.03.2021) - (151) end with 57325 KB
[Mod] homedecor_modpack / kitchen (5aecf5f2/05.06.2020) - (152) end with 57552 KB
[Mod] homedecor_modpack / wardrobe (5aecf5f2 /05.06.2020) - (153) end with 57575 KB
[Mod] homedecor_modpack / exterior (5aecf5f2 /05.06.2020) - (154) end with 57698 KB
[Mod] homedecor_modpack / clocks (5aecf5f2 /05.06.2020) - (155) end with 57735 KB
[Mod] homedecor_modpack / climate_control (5aecf5f2 /05.06.2020) - (156) end with 57782 KB
[Mod] homedecor_modpack / bathroom (5aecf5f2 /05.06.2020) - (157) end with 59657 KB
[Mod] hangglider (54afc34 / 14.01.2021) - (158) end with 59691 KB
[Mod] homedecor_modpack / lavalamp (5aecf5f2 /05.06.2020) - (159) end with 60280 KB
[Mod] homedecor_modpack / seating- (5aecf5f2 /05.06.2020) - (160) end with 60788 KB
[Mod] inventorybags (5aecf5f2 /05.06.2020) - (161) end with 61277 KB
        .__               __                   __   
  _____ |__| ____   _____/  |_  ____   _______/  |_ 
 /     \|  |/    \_/ __ \   __\/ __ \ /  ___/\   __\
|  Y Y  \  |   |  \  ___/|  | \  ___/ \___ \  |  |  
|__|_|  /__|___|  /\___  >__|  \___  >____  > |__|  
      \/        \/     \/          \/     \/        
2021-06-14 08:40:24: ACTION[Main]: World at [/home/thomas/.minetest/worlds/CelinesWildesThailand]
2021-06-14 08:40:24: ACTION[Main]: Server for gameid="BrainCraft" listening on 192.168.65.213:30001.
[Biome Lib] Registered a total of 43 surface types to be evaluated, spread
[Biome Lib] across 45 actions with air-checking and 3 actions without.
2021-06-14 08:40:24: ACTION[Server]: Announcing start to servers.minetest.net
Unified Inventory. inventory size: 2901
if it is faster, it takes a time for get all the friends in again ... maybe weekend
but with choosen 'clip' just the warning is gone, the changed 'work' for the server as of chosen or set to 'clip' is the same
but would it change with the settings 'blend' or 'opaque' ?

and therefore we should change it else:
minetest.conf

Code: Select all

# for the use_texture_alpha = clip, opaque or blend
use_texture_alpha = 'clip'
as as example in potlool/tool.ini

Code: Select all

use_texture_alpha = minetest.setting_get("use_texture_alpha"),
works on my test server
so that admin might be able to decide ... about lag ?

first result:
* yesterday with value true and Warnings, logged in 34 = lag ~ 0.7
* today with set all to fixed 'clip', no warnings, logged 33 = lag ~ 0.7 == no change of eliminating the Warnings

later this day:
* CRASH again as of mesecons, piston, mvps ... but is newest version from 10.04.2021
* as restarted without change ... but now the new settings with blend are active ...

with just 32 gamer now, 4 active, can't get them to afk position, lag is ~ 0.65, what might show that setting blend (instead of clip) is less laggy, will see tomorrow more exact.
Human has no future (climate change)
If urgend, you find me in Roblox (as CNXThomas)

User avatar
Festus1965
Member
Posts: 4181
Joined: Sun Jan 03, 2016 11:58
GitHub: Festus1965
In-game: Festus1965 Thomas Thailand Explorer
Location: Thailand ChiangMai
Contact:

Re: Minetest 5.4.1

by Festus1965 » Post

So, today morning, even with 'blend' settings ... at 50 gamer lag was then at 1.1 - 1.15 ...

As no reaction here, no updates in the mods ... (sure, they already do 5.5 ... who wants to upgrade the mod, when just again ...)

I already prepare to downgrade back to 5.2.0

bye bye 5.4.1
Human has no future (climate change)
If urgend, you find me in Roblox (as CNXThomas)

User avatar
loppi
Member
Posts: 162
Joined: Sat May 29, 2021 11:30
In-game: loppi Lolstadt
Location: Niedersachsen,Germany

Re: Minetest 5.4.1

by loppi » Post

oh,cool. now IWroads works! :D
"ich liebe industrie!" And yes, its a Russian Bulldozer 😁

User avatar
Diomède
New member
Posts: 5
Joined: Wed Nov 18, 2020 08:53
In-game: Diomede

Re: Minetest 5.4.1

by Diomède » Post

rubenwardy wrote:
Thu May 27, 2021 10:11
Is your mod in the secure.http_mods setting? Please may you provide some example code
Hey, you were right, I forgot to modify the minetest.conf file ^^'
It is working great, thank you.

mcaygerhard
Member
Posts: 129
Joined: Tue Mar 05, 2019 17:37
GitHub: mckaygerhard
IRC: mckaygerhard
In-game: mckaygerhard

Re: Minetest 5.4.1

by mcaygerhard » Post

We are in 5.4.1 and even the servers with the highest activity are those that host 0.4. reporting less lag with mayor users in limited resources servers.. how intersting

User avatar
Festus1965
Member
Posts: 4181
Joined: Sun Jan 03, 2016 11:58
GitHub: Festus1965
In-game: Festus1965 Thomas Thailand Explorer
Location: Thailand ChiangMai
Contact:

Re: Minetest 5.4.1

by Festus1965 » Post

mcaygerhard wrote:
Tue Aug 31, 2021 01:51
We are in 5.4.1 and even the servers with the highest activity are those that host 0.4. reporting less lag with mayor users in limited resources servers.. how intersting
read this:
A non MultiCraft server list please.
but in short:
* under 0.4.x are less server, and much more gamer clients (as mobile still not updated)
* under 5.x are more server then gamer, as most 5.x are pc or like this
* and the popular multicraft client read BOTH versions, but is supporting FIRST own MC server
Human has no future (climate change)
If urgend, you find me in Roblox (as CNXThomas)

Locked

Who is online

Users browsing this forum: No registered users and 3 guests