From cf39e16fa39fa05233c30722bcc3a9e884ef0025 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Tue, 21 May 2024 23:35:25 +0200 Subject: [PATCH] fix(inferium-server): server crash at start --- inferium-server.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inferium-server.lua b/inferium-server.lua index e80285d..1d6fb04 100644 --- a/inferium-server.lua +++ b/inferium-server.lua @@ -3,7 +3,7 @@ local inferiumPlans = require('config/inferium-plans') -- temporary default plan local INFERIUM_SERVER = 'inferium.com' local UPGRADE_SCRIPT = '/upgrade.lua' -local VERSION = "0.5.0" +local VERSION = "0.5.1" local defaultPlan = inferiumPlans.default or error('no default plan provided in config', 0) @@ -49,7 +49,7 @@ local function handleMessage(message, computerId) end net.openRednet() -print('> inferium server v' .. VERSION .. ' listening on port ' .. INFERIUM_QUERY_PORT) +print('> inferium server v' .. VERSION .. ' started') net.listenQuery(INFERIUM_SERVER, function(message, computerId, stopServer) if type(message) ~= table then