From d87b85bdd116faea8a0ac680aa05dda1cebdccfc Mon Sep 17 00:00:00 2001 From: radius Date: Sun, 21 May 2017 21:02:50 -0500 Subject: [PATCH] fix LOBBY connect --- command.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/command.c b/command.c index 59df0f734b..fbadb3236e 100644 --- a/command.c +++ b/command.c @@ -2280,8 +2280,7 @@ bool command_event(enum event_command cmd, void *data) to do this but for now I'll just use a string list */ char *buf = (char *)data; static struct string_list *hostname = NULL; - - hostname = string_split(buf, ":"); + hostname = string_split(buf, "|"); command_event(CMD_EVENT_NETPLAY_DEINIT, NULL);