Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
Update intercom status enum (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
iRebbok committed Sep 15, 2020
1 parent e8d2620 commit 5f6453c
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions Smod2/API/Map.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,15 @@ public enum ElevatorStatus

public enum IntercomStatus
{
Muted,
Restarting,
Transmitting_Admin,
Transmitting_Bypass,
Transmitting,
Ready
Ready = 0,
Transmitting = 1,
/* TransmittingBypass */
Transmitting_Bypass = 2,
Restarting = 3,
/* AdminSpeaking */
Transmitting_Admin = 4,
Muted = 5,
Custom = 6
}

public abstract class Elevator
Expand Down

0 comments on commit 5f6453c

Please sign in to comment.