mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-04 00:15:45 +02:00
9 lines
183 B
Lua
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) |