From 86b1fc75a0eb86f34ff7691bbc814342a6ca04bc Mon Sep 17 00:00:00 2001 From: Kei-Luna Date: Sat, 25 Apr 2026 14:18:22 +0900 Subject: [PATCH] fix fix fix fix --- Common/Data/GameData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Data/GameData.cs b/Common/Data/GameData.cs index b923995..4adf8b4 100644 --- a/Common/Data/GameData.cs +++ b/Common/Data/GameData.cs @@ -12,7 +12,7 @@ public static class GameData public static class GameResourceTemplateId { public static ulong FromGdpl(uint genre, uint detail, uint particular, uint level) => - ((ulong)genre << 48) | ((ulong)detail << 32) | ((ulong)particular << 16) | level; + ((ulong)level << 48) | ((ulong)particular << 32) | ((ulong)detail << 16) | genre; public static ulong FromGdpl(IReadOnlyList gdpl) => gdpl.Count >= 4 ? FromGdpl(gdpl[0], gdpl[1], gdpl[2], gdpl[3]) : 0;