Module:Township: Difference between revisions

m
Remove temporary functions
(getBuildingInfoBox, getBuildingUpgradeTable, getTraderTable: Update for v1.1.2)
m (Remove temporary functions)
Line 886: Line 886:
table.insert(ret, '\n|}')
table.insert(ret, '\n|}')
return table.concat(ret)
return table.concat(ret)
end
-- TODO Temporary functions, these exist to enable renaming of functions
-- above without causing templates to break until they are migrated to these
-- newly-named functions
function p.GetWorshipTable()
return p.getWorshipTable()
end
function p.GetBuildingTable(frame)
return p.getBuildingInfoBox()
end
function p.GetBuildingUpgradeTable(frame)
return p.getBuildingUpgradeTable(frame)
end
function p.GetTaskTable(frame)
return p.getTaskTable(frame)
end
function p.GetTaskReferenceTable(frame)
return p.getTaskReferenceTable(frame)
end
end


return p
return p