mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
minetest. to core.
This commit is contained in:
parent
b6dfae0221
commit
482c4d69b0
@ -710,7 +710,7 @@ core.register_chatcommand("time", {
|
|||||||
local hour = (current_time - minutes) / 60
|
local hour = (current_time - minutes) / 60
|
||||||
return true, ("Current time is %d:%02d"):format(hour, minutes)
|
return true, ("Current time is %d:%02d"):format(hour, minutes)
|
||||||
end
|
end
|
||||||
local player_privs = minetest.get_player_privs(name)
|
local player_privs = core.get_player_privs(name)
|
||||||
if not player_privs.settime then
|
if not player_privs.settime then
|
||||||
return false, "You don't have permission to run this command " ..
|
return false, "You don't have permission to run this command " ..
|
||||||
"(missing privilege: settime)."
|
"(missing privilege: settime)."
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
local scriptpath = minetest.get_builtin_path()..DIR_DELIM
|
local scriptpath = core.get_builtin_path()..DIR_DELIM
|
||||||
local commonpath = scriptpath.."common"..DIR_DELIM
|
local commonpath = scriptpath.."common"..DIR_DELIM
|
||||||
local gamepath = scriptpath.."game"..DIR_DELIM
|
local gamepath = scriptpath.."game"..DIR_DELIM
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ local function get_formspec(tabview, name, tabdata)
|
|||||||
if not file_exists(infofile) then
|
if not file_exists(infofile) then
|
||||||
infofile = current_texture_path ..DIR_DELIM.."info.txt"
|
infofile = current_texture_path ..DIR_DELIM.."info.txt"
|
||||||
if file_exists(infofile) then
|
if file_exists(infofile) then
|
||||||
minetest.log("info.txt is depreciated. description.txt should be used instead.");
|
core.log("info.txt is depreciated. description.txt should be used instead.");
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local infotext = ""
|
local infotext = ""
|
||||||
|
Loading…
Reference in New Issue
Block a user