Restores drainRate

Single file read md5

pitch change synctime
This commit is contained in:
fd
2015-06-21 22:57:30 -04:00
parent df07c62609
commit 55628038fe
7 changed files with 151 additions and 19 deletions

View File

@@ -132,10 +132,8 @@ public class Circle implements GameObject {
result = GameData.HIT_100;
else if (timeDiff <= hitResultOffset[GameData.HIT_50])
result = GameData.HIT_50;
else if (timeDiff <= hitResultOffset[GameData.HIT_MISS]){
else if (timeDiff <= hitResultOffset[GameData.HIT_MISS])
result = GameData.HIT_MISS;
System.out.println(timeDiff);
}
//else not a hit
return result;