diff options
-rw-r--r-- | Add-a-new-sprite-movement-behavior.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Add-a-new-sprite-movement-behavior.md b/Add-a-new-sprite-movement-behavior.md index e9a1f0f..c18ea6f 100644 --- a/Add-a-new-sprite-movement-behavior.md +++ b/Add-a-new-sprite-movement-behavior.md @@ -90,7 +90,7 @@ Here's what the individual `db` values mean: In the example, we based `SPRITEMOVEDATA_SWIM_UP_DOWN` off of `SPRITEMOVEDATA_SWIM_WANDER` but gave it the same movement function as `SPRITEMOVEDATA_WALK_UP_DOWN`. In particular, it needed the `SWIMMING` palette flag. -One more thing: there happens to be a bug that affects objects which swim and move randomly; they're not actually limited by their movement radius. So be sure to [fix that](../blob/master/docs/bugs_and_glitches.md#function6ec1-does-not-correctly-limit-object-movement). +One more thing: there happens to be a bug that affects objects which swim and move randomly; they're not actually limited by their movement radius. So be sure to [fix that](../blob/master/docs/bugs_and_glitches.md#swimming-npcs-arent-limited-by-their-movement-radius). Anyway, that's all! Now you can use `SPRITEMOVEDATA_SWIM_UP_DOWN` for `object_event`s just like the rest. |