Finish renaming event

This commit is contained in:
Oliver-Akins 2020-10-08 23:25:32 -06:00
parent 6ccb5f840e
commit 5ef4544822
3 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ import { ChancellorNomination } from "./events/ChancellorNomination";
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/InvestigateParty";
import { InvestigateParty } from "./events/special/InvestigateLoyalty/InvestigateParty";
export var log: Logger = new Logger({
displayFunctionName: false,
@ -78,7 +78,7 @@ io.on(`connection`, (socket: sio.Socket) => {
socket.on(`ExecutePlayer`, (data: any) => ExecutePlayer(io, socket, data));
socket.on(`NextPresident`, (data: any) => NextPresident(io, socket, data));
socket.on(`ExecutiveConfirmation`, (data: any) => ExecutiveConfirmation(io, socket, data));
socket.on(`InvestigateAffiliation`, (data: any) => InvestigateAffiliation(io, socket, data));
socket.on(`InvestigateParty`, (data: any) => InvestigateParty(io, socket, data));
// Utility Events