Skip to content

Commit

Permalink
Fix typedef of TopicPort cvar
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss committed Oct 22, 2023
1 parent f684cf3 commit 17d0137
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenDreamShared/OpenDreamCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public abstract class OpenDreamCVars {
public static readonly CVarDef<string> WorldParams =
CVarDef.Create("opendream.world_params", string.Empty, CVar.SERVERONLY);

public static readonly CVarDef<int> TopicPort =
CVarDef.Create("opendream.topic_port", 25567, CVar.SERVERONLY);
public static readonly CVarDef<ushort> TopicPort =
CVarDef.Create<ushort>("opendream.topic_port", 25567, CVar.SERVERONLY);
}
}

0 comments on commit 17d0137

Please sign in to comment.