Skip to content

Commit

Permalink
fix weapon (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
Geokureli authored Jun 6, 2024
1 parent 83a0984 commit ac508d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flixel/addons/weapon/FlxWeapon.hx
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ class FlxTypedWeapon<TBullet:FlxBullet>
#if (flixel < "5.9.0")
return cast(object, FlxTilemap).overlapsWithCallback(bullet);
#else
return cast(object, FlxTilemap).processOverlaps(bullet);
return cast(object, FlxTilemap).objectOverlapsTiles(bullet);
#end
}
else
Expand Down

0 comments on commit ac508d8

Please sign in to comment.