Fix Group being off by 1

This commit is contained in:
Haselnussbomber 2025-09-21 02:16:09 +02:00
parent c264fb134e
commit c03e7ecfe6
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1

View file

@ -114,7 +114,7 @@ public class AutoTranslatePayload : Payload, ITextProvider
&& expr1.TryGetUInt(out var group)
&& expr2.TryGetUInt(out var key))
{
this.Group = group;
this.Group = group + 1;
this.Key = key;
}
}