diff options
author | Hello TMW <hello@themanaworld.org> | 2025-02-26 10:17:52 +0000 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2025-02-26 10:17:52 +0000 |
commit | 3e8f187b85a24e5ea983403fbfd2abe08953df81 (patch) | |
tree | bced799fe5ec690ca4523fa96cf8753e57a1bf5a | |
parent | 7ec988a4b9e33683c1dbb1935c01e439c83e3313 (diff) | |
download | clientdata-3e8f187b85a24e5ea983403fbfd2abe08953df81.tar.gz clientdata-3e8f187b85a24e5ea983403fbfd2abe08953df81.tar.bz2 clientdata-3e8f187b85a24e5ea983403fbfd2abe08953df81.tar.xz clientdata-3e8f187b85a24e5ea983403fbfd2abe08953df81.zip |
Follow up to MR 676 - fix Birb walk anim as well
I did extra pass on XMLs checking mob walk animations VS unexpected `<end />` as outlined in https://git.themanaworld.org/legacy/clientdata/-/merge_requests/676 to be sure all mobs fixed and detected I missed 1 mob: Birb ("Piou King").
This mob also coming from another server - and features bugged `<end />` tag in "walk" animation, terminating animation prematurely.
Related to:
* https://git.themanaworld.org/mana/mana/-/issues/96
* https://git.themanaworld.org/legacy/clientdata/-/merge_requests/676
-rw-r--r-- | graphics/sprites/monsters/piou-king.xml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/graphics/sprites/monsters/piou-king.xml b/graphics/sprites/monsters/piou-king.xml index 5e3d8e09..23750d05 100644 --- a/graphics/sprites/monsters/piou-king.xml +++ b/graphics/sprites/monsters/piou-king.xml @@ -95,42 +95,34 @@ Copyright (C) 2011-2021 Moubootaur Legends --> <action name="walk" imageset="mob"> <animation direction="down"> <sequence start="108" end="119" delay="20"/> - <end/> </animation> <animation direction="downleft"> <sequence start="120" end="131" delay="20"/> - <end/> </animation> <animation direction="left"> <sequence start="132" end="143" delay="20"/> - <end/> </animation> <animation direction="upleft"> <sequence start="144" end="155" delay="20"/> - <end/> </animation> <animation direction="up"> <sequence start="156" end="167" delay="20"/> - <end/> </animation> <animation direction="upright"> <sequence start="168" end="179" delay="20"/> - <end/> </animation> <animation direction="right"> <sequence start="180" end="191" delay="20"/> - <end/> </animation> <animation direction="downright"> <sequence start="192" end="203" delay="20"/> - <end/> </animation> </action> |