1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-04 00:15:45 +02:00
ComfyFactorio/maps/test.lua
2018-09-20 08:56:57 +02:00

9 lines
183 B
Lua

local event = require 'utils.event'
local function on_player_joined_game(event)
game.print("Hello")
end
event.add(defines.events.on_player_joined_game, on_player_joined_game)