Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
minetest_game
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zadrog Pzvotrügen
minetest_game
Commits
9f4dc141
Commit
9f4dc141
authored
9 years ago
by
red-001
Committed by
paramat
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix TNT mod calculate blast intensity.
Currently the TNT mod uses a dummy vaule of 1 for this.
parent
cfef21f4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mods/tnt/init.lua
+9
-7
9 additions, 7 deletions
mods/tnt/init.lua
with
9 additions
and
7 deletions
mods/tnt/init.lua
+
9
−
7
View file @
9f4dc141
...
...
@@ -84,13 +84,15 @@ end
local
fire_node
=
{
name
=
"fire:basic_flame"
}
local
function
destroy
(
drops
,
pos
,
cid
,
ignore_protection
,
ignore_on_blast
)
if
not
ignore_protection
and
minetest
.
is_protected
(
pos
,
""
)
then
return
local
function
destroy
(
drops
,
n
pos
,
cid
,
c_air
,
c_fire
,
on_blast_queue
,
ignore_protection
,
ignore_on_blast
)
if
not
ignore_protection
and
minetest
.
is_protected
(
n
pos
,
""
)
then
return
cid
end
local
def
=
cid_data
[
cid
]
if
not
ignore_on_blast
and
def
and
def
.
on_blast
then
local
node_drops
=
def
.
on_blast
(
vector
.
new
(
pos
),
1
)
local
dist
=
vector
.
distance
(
bpos
,
npos
)
local
intensity
=
1
/
(
dist
*
dist
)
local
node_drops
=
def
.
on_blast
(
vector
.
new
(
npos
),
intensity
)
if
node_drops
then
for
_
,
item
in
ipairs
(
node_drops
)
do
add_drop
(
drops
,
item
)
...
...
@@ -99,9 +101,9 @@ local function destroy(drops, pos, cid, ignore_protection, ignore_on_blast)
return
end
if
def
and
def
.
flammable
then
minetest
.
set_node
(
pos
,
fire_node
)
minetest
.
set_node
(
n
pos
,
fire_node
)
else
minetest
.
remove_node
(
pos
)
minetest
.
remove_node
(
n
pos
)
if
def
then
local
node_drops
=
minetest
.
get_node_drops
(
def
.
name
,
""
)
for
_
,
item
in
ipairs
(
node_drops
)
do
...
...
@@ -233,7 +235,7 @@ local function tnt_explode(pos, radius, ignore_protection, ignore_on_blast)
p
.
y
=
pos
.
y
+
y
p
.
z
=
pos
.
z
+
z
if
cid
~=
c_air
then
destroy
(
drops
,
p
,
cid
,
ignore_protection
,
ignore_on_blast
)
destroy
(
drops
,
p
,
cid
,
pos
,
ignore_protection
,
ignore_on_blast
)
end
end
vi
=
vi
+
1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment