performance change

This commit is contained in:
Manuel Simon Hirsig
2017-01-16 18:23:38 +01:00
parent ddd0392bfc
commit 2ddac302e1
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -79,7 +79,7 @@ end
function M.merchant_info(item_id)
local buy_info
if aux_merchant_buy[item_id] then
buy_info = temp-persistence.read(merchant_buy_schema, aux_merchant_buy[item_id])
buy_info = persistence.read(merchant_buy_schema, aux_merchant_buy[item_id])
end
return aux_merchant_sell[item_id], buy_info and buy_info.unit_price, buy_info and buy_info.limited
end
@@ -87,7 +87,7 @@ end
function M.item_info(item_id)
local data_string = aux_items[item_id]
if data_string then
local cached_data = temp-persistence.read(items_schema, data_string)
local cached_data = persistence.read(items_schema, data_string)
return O(
'name', cached_data.name,
'itemstring', 'item:' .. item_id .. ':0:0:0',