forked from Mirrorlandia_minetest/minetest
[CSM] Remove non-functional minetest.get_day_count()
This commit is contained in:
parent
7e649f985c
commit
485b669840
@ -143,8 +143,7 @@ core.after(5, function()
|
|||||||
core.ui.minimap:show()
|
core.ui.minimap:show()
|
||||||
end
|
end
|
||||||
|
|
||||||
print("[PREVIEW] Day count: " .. core.get_day_count() ..
|
print("[PREVIEW] Time of day " .. core.get_timeofday())
|
||||||
" time of day " .. core.get_timeofday())
|
|
||||||
|
|
||||||
print("[PREVIEW] Node level: " .. core.get_node_level({x=0, y=20, z=0}) ..
|
print("[PREVIEW] Node level: " .. core.get_node_level({x=0, y=20, z=0}) ..
|
||||||
" max level " .. core.get_node_max_level({x=0, y=20, z=0}))
|
" max level " .. core.get_node_max_level({x=0, y=20, z=0}))
|
||||||
|
@ -734,8 +734,6 @@ Call these functions only at load time!
|
|||||||
* Optional: Variable number of arguments that are passed to `func`
|
* Optional: Variable number of arguments that are passed to `func`
|
||||||
* `minetest.get_us_time()`
|
* `minetest.get_us_time()`
|
||||||
* Returns time with microsecond precision. May not return wall time.
|
* Returns time with microsecond precision. May not return wall time.
|
||||||
* `minetest.get_day_count()`
|
|
||||||
* Returns number days elapsed since world was created, accounting for time changes.
|
|
||||||
* `minetest.get_timeofday()`
|
* `minetest.get_timeofday()`
|
||||||
* Returns the time of day: `0` for midnight, `0.5` for midday
|
* Returns the time of day: `0` for midnight, `0.5` for midday
|
||||||
|
|
||||||
|
@ -1330,7 +1330,6 @@ void ModApiEnvMod::Initialize(lua_State *L, int top)
|
|||||||
void ModApiEnvMod::InitializeClient(lua_State *L, int top)
|
void ModApiEnvMod::InitializeClient(lua_State *L, int top)
|
||||||
{
|
{
|
||||||
API_FCT(get_timeofday);
|
API_FCT(get_timeofday);
|
||||||
API_FCT(get_day_count);
|
|
||||||
API_FCT(get_node_max_level);
|
API_FCT(get_node_max_level);
|
||||||
API_FCT(get_node_level);
|
API_FCT(get_node_level);
|
||||||
API_FCT(find_node_near);
|
API_FCT(find_node_near);
|
||||||
|
Loading…
Reference in New Issue
Block a user