Revert last commit, that's not how original classic does it.

Also should have been || not &&
This commit is contained in:
UnknownShadow200 2017-03-03 19:43:02 +11:00
parent 27a2714619
commit d68d17eaa5

View File

@ -72,7 +72,7 @@ namespace ClassicalSharp.Physics {
t0 = tmin;
t1 = tmax;
return t0 >= 0 && t1 >= 0;
return t0 >= 0;
}
}
}