Merging 1.7.5 Source: core changes
This commit is contained in:
@@ -51,11 +51,12 @@ public class GamesInProgress {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public static void set( HeroClass cl, int depth, int level ) {
|
||||
|
||||
public static void set( HeroClass cl, int depth, int level, boolean challenges ) {
|
||||
Info info = new Info();
|
||||
info.depth = depth;
|
||||
info.level = level;
|
||||
info.challenges = challenges;
|
||||
state.put( cl, info );
|
||||
}
|
||||
|
||||
@@ -70,5 +71,6 @@ public class GamesInProgress {
|
||||
public static class Info {
|
||||
public int depth;
|
||||
public int level;
|
||||
public boolean challenges;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user