1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2025-11-30 16:18:00 +00:00

make bottom facing fan blow, not suck

This commit is contained in:
Alula 2021-06-27 03:42:44 +02:00
parent 584df5518b
commit ba582882cc
No known key found for this signature in database
GPG key ID: 3E00485503A1D8BA

View file

@ -896,7 +896,7 @@ impl NPC {
for player in players.iter_mut() {
if abs(player.x - self.x) < 0x1000 && player.y > self.y && player.y < self.y + 96 * 0x200 {
player.vel_y -= 0x88;
player.vel_y += 0x88;
}
}
}