1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

added spawn_report_popup skeleton

This commit is contained in:
Maik Wild 2018-08-13 17:36:21 +02:00
parent 9b136e35a0
commit f2549c7b33

View File

@ -1,3 +1,5 @@
local Module = {}
local Gui = require("utils.gui")
local Utils = require("utils.utils");
local report_frame_name = Gui.uid_name()
@ -113,6 +115,11 @@ Gui.on_click(
end
)
Module.spawn_report_popup = function(reporting_player, reported_player)
end
local function report_cmd(cmd)
if game.player then
local params = {}
@ -139,3 +146,5 @@ commands.add_command('showreports', 'Shows user reports (Admins only)',
end
end
)
return Module