Machines now explode when there is too much power transferred
This commit is contained in:
parent
84efcf7f7f
commit
286f95596f
8
api.lua
8
api.lua
|
@ -244,9 +244,9 @@ industrialtest.api.powerFlow=function(pos)
|
|||
local roomAvailable=false
|
||||
for _,endpoint in ipairs(network) do
|
||||
local endpointMeta=minetest.get_meta(endpoint.position)
|
||||
-- TODO: if supplying machine power flow is too large for receiving machine to handle then that machine should explode
|
||||
local transferredToEndpoint=false
|
||||
if industrialtest.api.transferPower(meta,endpointMeta,math.min(powerDistribution,endpoint.flow))>0 then
|
||||
if powerDistribution<=endpoint.flow then
|
||||
if industrialtest.api.transferPower(meta,endpointMeta,powerDistribution)>0 then
|
||||
transferred=true
|
||||
transferredToEndpoint=true
|
||||
end
|
||||
|
@ -265,6 +265,10 @@ industrialtest.api.powerFlow=function(pos)
|
|||
if not industrialtest.api.isFullyCharged(endpointMeta) then
|
||||
roomAvailable=true
|
||||
end
|
||||
else
|
||||
minetest.remove_node(endpoint.position)
|
||||
industrialtest.internal.explode(endpoint.position,2)
|
||||
end
|
||||
end
|
||||
return roomAvailable,transferred
|
||||
end
|
||||
|
|
|
@ -70,6 +70,7 @@ if industrialtest.mclAvailable then
|
|||
end
|
||||
return itemstack
|
||||
end
|
||||
industrialtest.internal.explode=mcl_explosions.explode
|
||||
end
|
||||
|
||||
-- compatibilty that adds not existing elements
|
||||
|
@ -647,6 +648,10 @@ if industrialtest.mclAvailable then
|
|||
y_min=mcl_vars.mg_overworld_min
|
||||
})
|
||||
elseif industrialtest.mtgAvailable then
|
||||
industrialtest.internal.explode=function(pos,radius)
|
||||
tnt.boom(pos,{radius=radius})
|
||||
end
|
||||
|
||||
industrialtest.registerMetal=function(name,displayName,hardness)
|
||||
minetest.register_craftitem("industrialtest:"..name.."_lump",{
|
||||
description=S(displayName.." Lump"),
|
||||
|
|
|
@ -243,6 +243,7 @@ reactor.activeOnTimer=function(pos,elapsed,meta,inv)
|
|||
if heat>200 then
|
||||
-- TODO: Explode
|
||||
minetest.remove_node(pos)
|
||||
industrialtest.internal.explode(pos,#maxCluster*4)
|
||||
return false,false
|
||||
end
|
||||
meta:set_int("heat",heat)
|
||||
|
|
Loading…
Reference in New Issue