From 4f005104010fbaac06fa179234d604d9b082867c Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 29 Sep 2020 17:20:02 -0600 Subject: [PATCH] Update import order --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 90ab825..242b7f0 100644 --- a/src/main.ts +++ b/src/main.ts @@ -5,6 +5,7 @@ import { HostGame } from "./events/HostGame"; import { StartGame } from "./events/StartGame"; import { VetoConfirm } from "./events/VetoConfirm"; import { VetoRequest } from "./events/VetoRequest"; +import { GetPlayerList } from "./events/GetPlayerList"; import { ChancellorPolicy } from "./events/ChancellorPolicy"; import { PresidentPolicies } from "./events/PresidentPolicies"; import { ChancellorNomination } from "./events/ChancellorNomination"; @@ -12,7 +13,6 @@ import { ExecutePlayer } from "./events/special/Execution/ExecutePlayer"; import { NextPresident } from "./events/special/SpecialElection/NextPresident"; import { ExecutiveConfirmation } from "./events/special/ExecutiveConfirmation"; import { InvestigateAffiliation } from "./events/special/InvestigateLoyalty/InvestigateAffiliation"; -import { GetPlayerList } from "./events/GetPlayerList"; const io = sio.listen(3000);