From b7cb111ea1e24e5932fb3869648a785829de6f9e Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 8 Oct 2020 23:26:58 -0600 Subject: [PATCH] Move ExecutePlayer file into events root --- src/events/{special/Execution => }/ExecutePlayer.ts | 0 src/main.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/events/{special/Execution => }/ExecutePlayer.ts (100%) diff --git a/src/events/special/Execution/ExecutePlayer.ts b/src/events/ExecutePlayer.ts similarity index 100% rename from src/events/special/Execution/ExecutePlayer.ts rename to src/events/ExecutePlayer.ts diff --git a/src/main.ts b/src/main.ts index c7bae6e..2b8462e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -13,7 +13,7 @@ import { GetPlayerList } from "./events/GetPlayerList"; import { ChancellorPolicy } from "./events/ChancellorPolicy"; import { PresidentPolicies } from "./events/PresidentPolicies"; import { ChancellorNomination } from "./events/ChancellorNomination"; -import { ExecutePlayer } from "./events/special/Execution/ExecutePlayer"; +import { ExecutePlayer } from "./events/ExecutePlayer"; import { NextPresident } from "./events/NextPresident"; import { ExecutiveConfirmation } from "./events/special/ExecutiveConfirmation"; import { InvestigateParty } from "./events/InvestigateParty";