We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d6b89f commit c71f30aCopy full SHA for c71f30a
1 file changed
src/animationlayer.cpp
@@ -488,7 +488,10 @@ void CharacterAnimationLayer::setFrameEffects(QStringList data)
488
for (const QString &raw_effect : std::as_const(emote_effects))
489
{
490
QStringList frame_data = raw_effect.split("=");
491
-
+ if (frame_data.size() < 2)
492
+ {
493
+ continue;
494
+ }
495
const int frame_number = frame_data.at(0).toInt();
496
497
FrameEffect effect;
0 commit comments