View source for Module:Cargo orders
From Space Station 14 Wiki
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {} --p stands for package
local getArgs = require('Module:Arguments').getArgs
local yesNo = require('Module:Yesno')
local orders_table = mw.loadJsonData("Module:Cargo orders/data/auto/orders.json")
local current_frame = mw.getCurrentFrame()
-- =======================
local function assert_not_nil(value, error_message)
if value == nil then
if error_message == nil then
error("value is nil")
else
error(error_message)
end
end
end
local function starts_with(str, substr)
return string.sub(str, 1, string.len(substr)) == substr
000
1:0
Templates used on this page:
Return to Module:Cargo orders.