From 41d97eb0bf13da03f1f63a28aac34e5315d77a5b Mon Sep 17 00:00:00 2001 From: Sir3lit Date: Mon, 15 Apr 2019 04:50:48 -0400 Subject: [PATCH] Fixed server password Using "" as the blank password makes it happy and works. --- factorio/factorio/egg-factorio.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/factorio/factorio/egg-factorio.json b/factorio/factorio/egg-factorio.json index c637bdf4..e5017803 100644 --- a/factorio/factorio/egg-factorio.json +++ b/factorio/factorio/egg-factorio.json @@ -115,12 +115,12 @@ }, { "name": "Server Password", - "description": "Password to join the server, Blank is none.", + "description": "Password to join the server, \"\" is none", "env_variable": "SERVER_PASS", - "default_value": "", + "default_value": "\"\"", "user_viewable": 1, "user_editable": 1, "rules": "nullable|string|max:30" } ] -} \ No newline at end of file +}