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
12a471f7
Commit
12a471f7
authored
Nov 30, 2014
by
Gael-de-Sailly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned the code, thanks to SmallJoker
parent
87cee19f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
init.lua
init.lua
+7
-2
No files found.
init.lua
View file @
12a471f7
minetest
.
register_chatcommand
(
"mapfix"
,
{
params
=
"<size>"
,
description
=
"Recalculate the flowing liquids of a chunk"
,
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
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"
end
local
minp
,
maxp
=
{
x
=
math.floor
(
pos
.
x
-
size
),
y
=
math.floor
(
pos
.
y
-
size
),
z
=
math.floor
(
pos
.
z
-
size
)},
{
x
=
math.ceil
(
pos
.
x
+
size
),
y
=
math.ceil
(
pos
.
y
+
size
),
z
=
math.ceil
(
pos
.
z
+
size
)}
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
()
vm
:
read_from_map
(
minp
,
maxp
)
vm
:
calc_lighting
()
...
...
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