Correct value parsing errors.
This commit is contained in:
parent
d56ba568c7
commit
d83c522836
BIN
sigIRCv2.jar
BIN
sigIRCv2.jar
Binary file not shown.
@ -343,6 +343,8 @@ public class Profile {
|
||||
}*/
|
||||
}
|
||||
eventStruct = events.toString();
|
||||
|
||||
syncing = RabiRaceModule.syncEvents;
|
||||
}
|
||||
|
||||
private boolean NonRestrictedValue(int i) {
|
||||
@ -434,7 +436,7 @@ public class Profile {
|
||||
nextval = data[i++];
|
||||
map = Integer.parseInt(nextval);
|
||||
nextval = data[i++];
|
||||
syncing = Boolean.parseBoolean(data[i++]);
|
||||
syncing = Boolean.parseBoolean(nextval);
|
||||
nextval = data[i++];
|
||||
FileUtils.logToFile("["+System.currentTimeMillis()+"]Grabbed map and eventstruct: "+eventStruct+"///"+map, "debug.log");
|
||||
//System.out.println("Grabbed Map data...");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user