Skip to content

Commit

Permalink
Fix default value for idle time multiplier in GameOptions so the drop…
Browse files Browse the repository at this point in the history
…down actually has something selected.
  • Loading branch information
ajanata committed Feb 26, 2018
1 parent b80f12e commit a94ba4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/socialgamer/cah/data/GameOptions.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2012, Andy Janata
* Copyright (c) 2012-2018, Andy Janata
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted
Expand Down Expand Up @@ -59,7 +59,7 @@ public class GameOptions {
public int scoreGoal = DEFAULT_SCORE_LIMIT;
public final Set<Integer> cardSetIds = new HashSet<Integer>();
public String password = "";
public String timerMultiplier = "1.0x";
public String timerMultiplier = "1x";

/**
* Update the options in-place (so that the Game doesn't need more locks).
Expand Down

0 comments on commit a94ba4a

Please sign in to comment.