mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix Group being off by 1
This commit is contained in:
parent
c264fb134e
commit
c03e7ecfe6
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue