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
c30be123
Commit
c30be123
authored
Jul 02, 2015
by
Gael-de-Sailly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrite mapfix
parent
074029a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
7 deletions
+24
-7
init.lua
init.lua
+24
-7
No files found.
init.lua
View file @
c30be123
local
function
mapfix
(
minp
,
maxp
)
local
vm
=
minetest
.
get_voxel_manip
(
minp
,
maxp
)
vm
:
update_liquids
()
vm
:
write_to_map
()
vm
:
update_map
()
end
local
previous
=
-
math.huge
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
delay
=
tonumber
(
minetest
.
setting_get
(
"mapfix_delay"
))
or
15
minetest
.
register_chatcommand
(
"mapfix"
,
{
params
=
"<size>"
,
description
=
"Recalculate the flowing liquids and the light of a chunk"
,
func
=
function
(
name
,
param
)
local
pos
=
minetest
.
get_player_by_name
(
name
):
getpos
()
local
size
=
tonumber
(
param
)
or
40
local
privs
=
minetest
.
check_player_privs
(
name
,
{
server
=
true
})
local
time
=
os.clock
()
if
size
>
50
and
not
minetest
.
check_player_privs
(
name
,
{
server
=
true
})
then
return
false
,
"You need the server privilege to exceed the radius of 50 blocks"
if
not
privs
then
if
size
>
50
and
not
privs
then
return
false
,
"You need the server privilege to exceed the radius of "
..
max_size
..
" blocks"
elseif
time
-
previous
<
15
then
return
false
,
"Wait at least "
..
delay
..
" seconds from the previous \"
/
mapfix
\
"."
end
previous
=
time
end
local
minp
=
vector
.
round
(
vector
.
subtract
(
pos
,
size
-
0
.
5
))
local
maxp
=
vector
.
round
(
vector
.
add
(
pos
,
size
+
0
.
5
))
-- use the voxelmanip to fix problems
local
vm
=
minetest
.
get_voxel_manip
(
minp
,
maxp
)
vm
:
update_liquids
()
vm
:
write_to_map
()
vm
:
update_map
()
minetest
.
log
(
"action"
,
name
..
" uses mapfix at "
..
minetest
.
pos_to_string
(
vector
.
round
(
pos
))
..
" with radius "
..
size
)
mapfix
(
minp
,
maxp
)
return
true
,
"Done."
end
,
})
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