Add TODO comment

Former-commit-id: fdc9e6d65d9d534e238a6ba2d1c2e66f194d975e
This commit is contained in:
timokoesters 2019-05-11 21:48:05 +02:00
parent 4ce1f9ee54
commit bdf241bf24

View File

@ -29,6 +29,7 @@ impl<'a> System<'a> for Sys {
pos.0 += vel.0 * dt.0;
// Don't fall into the void
// TODO: This shouldn't be needed when we have proper physics and chunk loading
if pos.0.z < 0.0 {
pos.0.z = 0.0;
vel.0.z = 0.0;