Skip to content

Commit

Permalink
Make the fpga overheat
Browse files Browse the repository at this point in the history
  • Loading branch information
Desour authored and sfan5 committed Oct 29, 2017
1 parent f78937b commit db39eef
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion mesecons_fpga/init.lua
Expand Up @@ -72,7 +72,7 @@ plg.register_nodes({
sunlight_propagates = true,
paramtype = "light",
walkable = true,
groups = {dig_immediate = 2, mesecon = 3},
groups = {dig_immediate = 2, mesecon = 3, overheat = 1},
drop = "mesecons_fpga:fpga0000",
selection_box = {
type = "fixed",
Expand Down Expand Up @@ -309,6 +309,11 @@ plg.update = function(pos)
local meta = minetest.get_meta(pos)
if meta:get_int("valid") ~= 1 then
return
elseif mesecon.do_overheat(pos) then
plg.setports(pos, false, false, false, false)
meta:set_int("valid", 0)
meta:set_string("infotext", "FPGA (overheated)")
return
end

local is = lcore.deserialize(meta:get_string("instr"))
Expand Down

0 comments on commit db39eef

Please sign in to comment.