Skip to content

Commit

Permalink
Fix decision time
Browse files Browse the repository at this point in the history
  • Loading branch information
FluffyStuff committed Apr 11, 2020
1 parent 92f637f commit deb21f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/Game/ServerSettings.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ public class ServerSettings : Serializable

public ServerSettings.from_string(string settings)
{
this.default();
load_string(settings);
}

public ServerSettings.from_settings(ServerSettings settings)
{
this.default();
load_from_string(settings.to_string());
}

Expand Down Expand Up @@ -106,5 +108,5 @@ public class ServerSettings : Serializable
public OnOffEnum aka_dora { get; set; }
public OnOffEnum multiple_ron { get; set; }
public OnOffEnum triple_ron_draw { get; set; }
public int decision_time;
public int decision_time { get; set; }
}

0 comments on commit deb21f3

Please sign in to comment.