Fix segfault in deprecation logging due to tail call, log by default (#10174)
This commit is contained in:
parent
88f2e825b9
commit
01f09b912b
|
@ -1220,10 +1220,10 @@ movement_gravity (Gravity) float 9.81
|
||||||
[**Advanced]
|
[**Advanced]
|
||||||
|
|
||||||
# Handling for deprecated Lua API calls:
|
# Handling for deprecated Lua API calls:
|
||||||
# - legacy: (try to) mimic old behaviour (default for release).
|
# - none: Do not log deprecated calls
|
||||||
# - log: mimic and log backtrace of deprecated call (default for debug).
|
# - log: mimic and log backtrace of deprecated call (default).
|
||||||
# - error: abort on usage of deprecated call (suggested for mod developers).
|
# - error: abort on usage of deprecated call (suggested for mod developers).
|
||||||
deprecated_lua_api_handling (Deprecated Lua API handling) enum legacy legacy,log,error
|
deprecated_lua_api_handling (Deprecated Lua API handling) enum log none,log,error
|
||||||
|
|
||||||
# Number of extra blocks that can be loaded by /clearobjects at once.
|
# Number of extra blocks that can be loaded by /clearobjects at once.
|
||||||
# This is a trade-off between sqlite transaction overhead and
|
# This is a trade-off between sqlite transaction overhead and
|
||||||
|
|
Loading…
Reference in New Issue