mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
Fix abbreviations being in client language for reflection.
This commit is contained in:
parent
9dc1b92c9a
commit
6209132ab3
1 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Dalamud;
|
||||||
using Dalamud.Data;
|
using Dalamud.Data;
|
||||||
using Lumina.Excel.GeneratedSheets;
|
using Lumina.Excel.GeneratedSheets;
|
||||||
using Penumbra.GameData.Enums;
|
using Penumbra.GameData.Enums;
|
||||||
|
|
@ -103,7 +104,7 @@ namespace Glamourer
|
||||||
return _jobGroups;
|
return _jobGroups;
|
||||||
|
|
||||||
var sheet = dataManager.GetExcelSheet<ClassJobCategory>()!;
|
var sheet = dataManager.GetExcelSheet<ClassJobCategory>()!;
|
||||||
var jobs = dataManager.GetExcelSheet<ClassJob>()!;
|
var jobs = dataManager.GetExcelSheet<ClassJob>(ClientLanguage.English)!;
|
||||||
|
|
||||||
static bool ValidIndex(uint idx)
|
static bool ValidIndex(uint idx)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue