From a6ca8568595bb6970a486585c0c79d7de1d01617 Mon Sep 17 00:00:00 2001 From: AlexejheroYTB Date: Thu, 12 Nov 2020 09:13:02 +0200 Subject: [PATCH] Update SystemTypes.cs --- src/Impostor.Api/Innersloth/SystemTypes.cs | 61 +++++++++++++--------- 1 file changed, 36 insertions(+), 25 deletions(-) diff --git a/src/Impostor.Api/Innersloth/SystemTypes.cs b/src/Impostor.Api/Innersloth/SystemTypes.cs index 7e600a1..7f91718 100644 --- a/src/Impostor.Api/Innersloth/SystemTypes.cs +++ b/src/Impostor.Api/Innersloth/SystemTypes.cs @@ -2,30 +2,41 @@ { public enum SystemTypes : byte { - Hallway, - Storage, - Cafeteria, - Reactor, - UpperEngine, - Nav, - Admin, - Electrical, - LifeSupp, - Shields, - MedBay, - Security, - Weapons, - LowerEngine, - Comms, - ShipTasks, - Doors, - Sabotage, - Decontamination, - Launchpad, - LockerRoom, - Laboratory, - Balcony, - Office, - Greenhouse, + Hallway = 0, + Storage = 1, + Cafeteria = 2, + Reactor = 3, + UpperEngine = 4, + Nav = 5, + Admin = 6, + Electrical = 7, + LifeSupp = 8, + Shields = 9, + MedBay = 10, + Security = 11, + Weapons = 12, + LowerEngine = 13, + Comms = 14, + ShipTasks = 15, + Doors = 16, + Sabotage = 17, + /// + /// Decontam on Mira and bottom decontam on Polus + /// + Decontamination = 18, + Launchpad = 19, + LockerRoom = 20, + Laboratory = 21, + Balcony = 22, + Office = 23, + Greenhouse = 24, + Dropship = 25, + /// + /// Top decontam on Polus + /// + Decontamination2 = 26, + Outside = 27, + Specimens = 28, + BoilerRoom = 29 } } \ No newline at end of file -- 2.39.5