From 76822ac7b783f0e4be0fb60b3fe29d404d6472ea Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Sun, 22 Jan 2023 00:59:27 -0800 Subject: [PATCH] remove orphan fortplan.lua file --- plugins/lua/fortplan.lua | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 plugins/lua/fortplan.lua diff --git a/plugins/lua/fortplan.lua b/plugins/lua/fortplan.lua deleted file mode 100644 index 71e69c69d..000000000 --- a/plugins/lua/fortplan.lua +++ /dev/null @@ -1,13 +0,0 @@ -local _ENV = mkmodule('plugins.fortplan') - -require('dfhack.buildings') - -function construct_building_from_params(building_type, x, y, z) - local pos = xyz2pos(x, y, z) - local bld, err = - dfhack.buildings.constructBuilding{type=building_type, pos=pos} - if err then error(err) end - return bld -end - -return _ENV