Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mapfix
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Illuna-Minetest
mapfix
Commits
e2a61c8d
Commit
e2a61c8d
authored
Oct 04, 2015
by
Gael-de-Sailly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve mapfix, thanks to crabman77
parent
9a7e5e4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
init.lua
init.lua
+3
-3
No files found.
init.lua
View file @
e2a61c8d
...
@@ -5,7 +5,7 @@ local function mapfix(minp, maxp)
...
@@ -5,7 +5,7 @@ local function mapfix(minp, maxp)
vm
:
update_map
()
vm
:
update_map
()
end
end
local
previous
=
-
math.huge
local
previous
=
os.time
()
local
default_size
=
tonumber
(
minetest
.
setting_get
(
"mapfix_default_size"
))
or
40
local
default_size
=
tonumber
(
minetest
.
setting_get
(
"mapfix_default_size"
))
or
40
local
max_size
=
tonumber
(
minetest
.
setting_get
(
"mapfix_max_size"
))
or
50
local
max_size
=
tonumber
(
minetest
.
setting_get
(
"mapfix_max_size"
))
or
50
...
@@ -16,12 +16,12 @@ minetest.register_chatcommand("mapfix", {
...
@@ -16,12 +16,12 @@ minetest.register_chatcommand("mapfix", {
description
=
"Recalculate the flowing liquids and the light of a chunk"
,
description
=
"Recalculate the flowing liquids and the light of a chunk"
,
func
=
function
(
name
,
param
)
func
=
function
(
name
,
param
)
local
pos
=
minetest
.
get_player_by_name
(
name
):
getpos
()
local
pos
=
minetest
.
get_player_by_name
(
name
):
getpos
()
local
size
=
tonumber
(
param
)
or
40
local
size
=
tonumber
(
param
)
or
default_size
local
privs
=
minetest
.
check_player_privs
(
name
,
{
server
=
true
})
local
privs
=
minetest
.
check_player_privs
(
name
,
{
server
=
true
})
local
time
=
os.time
()
local
time
=
os.time
()
if
not
privs
then
if
not
privs
then
if
size
>
50
and
not
privs
then
if
size
>
max_size
then
return
false
,
"You need the server privilege to exceed the radius of "
..
max_size
..
" blocks"
return
false
,
"You need the server privilege to exceed the radius of "
..
max_size
..
" blocks"
elseif
time
-
previous
<
delay
then
elseif
time
-
previous
<
delay
then
return
false
,
"Wait at least "
..
delay
..
" seconds from the previous \"
/
mapfix
\
"."
return
false
,
"Wait at least "
..
delay
..
" seconds from the previous \"
/
mapfix
\
"."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment