From a29958aaf4911db41d541bfb0fbc208aa5d2027c Mon Sep 17 00:00:00 2001 From: Evan Langlais Date: Fri, 24 Mar 2017 12:39:15 -0400 Subject: [PATCH] Fixed host station type definition --- Enigma/Stations/HostStation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Enigma/Stations/HostStation.cs b/Enigma/Stations/HostStation.cs index e1d459b..481fe30 100644 --- a/Enigma/Stations/HostStation.cs +++ b/Enigma/Stations/HostStation.cs @@ -12,7 +12,7 @@ class HostStation : Station public List tables = new List
(); - public HostStation(StationTypeDef type, string stationid) : base(type, stationid) + public HostStation(string stationid) : base(StationTypeDef.host, stationid) { Employee activeEmployee = SystemFunctions.showPinScreenUntilAuthenticated(EmployeeRole.host); view = new StationsGUI.HostStationView();