From 1810fcb89abebbf7628e40a148e24eb1a361d88a Mon Sep 17 00:00:00 2001 From: Chris Maltby Date: Thu, 7 Nov 2024 16:32:12 +0000 Subject: [PATCH] Fix issue where "Set Animation Frame" event wouldn't allow frame values greater than 25 --- CHANGELOG.md | 1 + src/lib/events/eventActorSetFrame.js | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcdbe1495..614140619 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix issue preventing engine plugins stored in subfolders from being included in project - Fix bottom margins when using GB Printer [@untoxa](https://github.com/untoxa) - Fix variable uses list which wasn't including variable "0"'s uses in text fields +- Fix issue where "Set Animation Frame" event wouldn't allow frame values greater than 25 ## [4.1.3] - 2024-09-16 diff --git a/src/lib/events/eventActorSetFrame.js b/src/lib/events/eventActorSetFrame.js index 9c3dc8c81..9c80bbb52 100644 --- a/src/lib/events/eventActorSetFrame.js +++ b/src/lib/events/eventActorSetFrame.js @@ -27,7 +27,6 @@ const fields = [ description: l10n("FIELD_ANIMATION_FRAME_DESC"), type: "value", min: 0, - max: 25, defaultValue: { type: "number", value: 0,