GalaxyTrail / fp2bugs

Issue tracker for Freedom Planet 2 glitches and other bugs
7 stars 0 forks source link

[1.0.6] [Minor] Green Bridges get force applied without standing on them. #259

Open NBlastMax opened 6 years ago

NBlastMax commented 6 years ago

Minor bug tied to the Dragon Valley bridges. Standing below them puts "force" onto them.

20171220232551_1

CheekiestThing commented 5 years ago

screen_0 Most likely already fixed? Otherwise, fixing it would only require an additional check. if (FPCollision.CheckOOBB(this, this.hbTouch, fpbaseObject, fpplayer.hbTouch) && fpplayer.onGround into if (FPCollision.CheckOOBB(this, this.hbTouch, fpbaseObject, fpplayer.hbTouch) && fpplayer.onGround && this.position.y < fpplayer.position.y) which hinders the bridge from getting triggered if the player's standing under it