remove orphan fortplan.lua file

develop
Myk Taylor 2023-01-22 00:59:27 -08:00
parent bb5a3ac8e9
commit 76822ac7b7
No known key found for this signature in database
1 changed files with 0 additions and 13 deletions

@ -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