AsyncErr: Lua: Runtime error from mod 'builtin' in callback environment_Step(): ...st-5.7.0-win64\bin..\mods\arena_lib/src/api/in_game.lua:1033: attempt to index field 'initial_properties' (a nil value)
stack traceback:
...st-5.7.0-win64\bin..\mods\arena_lib/src/api/in_game.lua:1033: in function 'remove_attachments'
...st-5.7.0-win64\bin..\mods\arena_lib/src/api/in_game.lua:756: in function 'operations_before_entering_arena'
...st-5.7.0-win64\bin..\mods\arena_lib/src/api/in_game.lua:47: in function 'load_arena'
...t-5.7.0-win64\bin..\mods\arena_lib/src/api/in_queue.lua:363: in function 'go_to_arena'
...t-5.7.0-win64\bin..\mods\arena_lib/src/api/in_queue.lua:36: in function <...t-5.7.0-win64\bin..\mods\arena_lib/src/api/in_queue.lua:24>
...op\minetest-5.7.0-win64\bin..\builtin\game\register.lua:446: in function <...op\minetest-5.7.0-win64\bin..\builtin\game\register.lua:432>
It's the same mistake you had in the past: there is some mod either providing initial_properties inline in the entity def (which is deprecated so arena_lib doesn't support it) or using on_activate to declare it (but why should anyone do it?). I could add a check, but this looks like someone else's fault. You get this crash when you enter an arena with such a peculiar entity attached to yourself
AsyncErr: Lua: Runtime error from mod 'builtin' in callback environment_Step(): ...st-5.7.0-win64\bin..\mods\arena_lib/src/api/in_game.lua:1033: attempt to index field 'initial_properties' (a nil value) stack traceback: ...st-5.7.0-win64\bin..\mods\arena_lib/src/api/in_game.lua:1033: in function 'remove_attachments' ...st-5.7.0-win64\bin..\mods\arena_lib/src/api/in_game.lua:756: in function 'operations_before_entering_arena' ...st-5.7.0-win64\bin..\mods\arena_lib/src/api/in_game.lua:47: in function 'load_arena' ...t-5.7.0-win64\bin..\mods\arena_lib/src/api/in_queue.lua:363: in function 'go_to_arena' ...t-5.7.0-win64\bin..\mods\arena_lib/src/api/in_queue.lua:36: in function <...t-5.7.0-win64\bin..\mods\arena_lib/src/api/in_queue.lua:24> ...op\minetest-5.7.0-win64\bin..\builtin\game\register.lua:446: in function <...op\minetest-5.7.0-win64\bin..\builtin\game\register.lua:432>
It's the same mistake you had in the past: there is some mod either providing
initial_properties
inline in the entity def (which is deprecated so arena_lib doesn't support it) or usingon_activate
to declare it (but why should anyone do it?). I could add a check, but this looks like someone else's fault. You get this crash when you enter an arena with such a peculiar entity attached to yourselfSorry for double posting, I found the reason for the crashes. It's due to the mod "Equippable Accessories".