Kazuma no longer avoids laws of gravity

This commit is contained in:
Alula 2021-01-03 05:53:34 +01:00
parent e092a9e2ea
commit 43a3c81a0e
No known key found for this signature in database
GPG Key ID: 3E00485503A1D8BA
1 changed files with 6 additions and 0 deletions

View File

@ -84,6 +84,12 @@ impl NPC {
_ => {}
}
self.vel_y += 0x20;
if self.vel_y > 0x5ff {
self.vel_y = 0x5ff;
}
Ok(())
}