This commit is contained in:
Anuken
2020-12-08 21:36:20 -05:00
parent 15a07a4a18
commit 1460a15942
3 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ public class HintsFragment extends Fragment{
private static final float foutTime = 0.6f;
/** All hints to be displayed in the game. */
public Seq<Hint> hints = Seq.with(DefaultHint.values());
public Seq<Hint> hints = new Seq<>().and(DefaultHint.values()).as();
@Nullable Hint current;
Group group = new WidgetGroup();