Skip to content

Commit ab2757b

Browse files
authored
Merge pull request #155 from Jaksuhn/important-rename
incredibly important rename
2 parents fe207e2 + 53b3831 commit ab2757b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ECommons/DalamudServices/Svc.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public class Svc
5454
[PluginService] public static ITextureReadbackProvider TextureReadback { get; private set; }
5555
[PluginService] public static ITitleScreenMenu TitleScreenMenu { get; private set; }
5656
[PluginService] public static IToastGui Toasts { get; private set; }
57+
[PluginService] public static IUnlockState UnlockState { get; private set; }
5758

5859
public static Legacy.IGameNetwork GameNetwork
5960
{

ECommons/GenericHelpers/ExcelHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public static bool TryGetRow<T>(uint rowId, ushort subRowId, ClientLanguage? lan
230230
/// <param name="predicate"></param>
231231
/// <param name="language"></param>
232232
/// <returns></returns>
233-
public static T? FindRowSub<T>(Func<T, bool> predicate, ClientLanguage? language = null) where T : struct, IExcelSubrow<T>
233+
public static T? FindSubrow<T>(Func<T, bool> predicate, ClientLanguage? language = null) where T : struct, IExcelSubrow<T>
234234
{
235235
return GetSubrowSheet<T>(language).SelectMany(m => m).Cast<T?>().FirstOrDefault(t => predicate(t.Value), null);
236236
}

0 commit comments

Comments
 (0)