burnt lua controller
This commit is contained in:
parent
efbfddcd56
commit
ca58abe930
@ -9,10 +9,17 @@ type LuaControllerBlock struct{}
|
|||||||
|
|
||||||
func (this *LuaControllerBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
|
func (this *LuaControllerBlock) onMapObject(x, y, z int, block *mapblockparser.MapBlock) *mapobjectdb.MapObject {
|
||||||
md := block.Metadata.GetMetadata(x, y, z)
|
md := block.Metadata.GetMetadata(x, y, z)
|
||||||
|
nodename := block.GetNodeName(x, y, z)
|
||||||
|
|
||||||
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "luacontroller")
|
o := mapobjectdb.NewMapObject(block.Pos, x, y, z, "luacontroller")
|
||||||
o.Attributes["code"] = md["code"]
|
o.Attributes["code"] = md["code"]
|
||||||
o.Attributes["lc_memory"] = md["lc_memory"]
|
o.Attributes["lc_memory"] = md["lc_memory"]
|
||||||
|
|
||||||
|
if nodename == "mesecons_luacontroller:luacontroller_burnt" {
|
||||||
|
o.Attributes["burnt"] = "1"
|
||||||
|
} else {
|
||||||
|
o.Attributes["burnt"] = "0"
|
||||||
|
}
|
||||||
|
|
||||||
return o
|
return o
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user