Skip to content

Commit

Permalink
Fixed host station type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Langlais authored and Evan Langlais committed Mar 24, 2017
1 parent 60ed18e commit a29958a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Enigma/Stations/HostStation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class HostStation : Station

public List<Table> tables = new List<Table>();

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();
Expand Down

0 comments on commit a29958a

Please sign in to comment.