From 1213257fd3a39f056136633330d5ddb81eb815ad Mon Sep 17 00:00:00 2001 From: wish Date: Fri, 22 Jul 2022 13:00:06 +1000 Subject: [PATCH] mediate discord handling --- Erupe/server/channelserver/handlers_discord.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Erupe/server/channelserver/handlers_discord.go b/Erupe/server/channelserver/handlers_discord.go index a7ed288ab..94c92c58f 100644 --- a/Erupe/server/channelserver/handlers_discord.go +++ b/Erupe/server/channelserver/handlers_discord.go @@ -206,7 +206,7 @@ func questlist(s *Server) string { } hasDeparted := "" - if stage.hasDeparted { + if len(stage.clients) > 0 { hasDeparted = " - departed" } list += fmt.Sprintf(" '-> StageId: %s (%d/%d) %s - %s\n", stage.id, len(stage.reservedClientSlots), stage.maxPlayers, hasDeparted, stage.createdAt)