Skip to content

Commit

Permalink
Merge pull request #539 from chsami/development
Browse files Browse the repository at this point in the history
fix Rs2Reflection
  • Loading branch information
chsami authored Dec 3, 2024
2 parents 6a05218 + e9bbf4e commit 0defeb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static int getAnimation(NPC npc) {
}
int value = declaredField.getInt(npc);
declaredField.setInt(npc, 4795789);
if (npc.getAnimation() == sequence * 4795789) {
if (npc.getAnimation() == animationMultiplier * 4795789) {
animationField = declaredField.getName();
declaredField.setInt(npc, value);
declaredField.setAccessible(false);
Expand Down

0 comments on commit 0defeb3

Please sign in to comment.