You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the this code, the conditional statement if (sheetType == typeof(WorldBossKillRewardSheet) || sheetType == typeof(WorldBossBattleRewardSheet)) excludes these two sheets because they require a special treatment before accessing their Rune values. The SetRune method must be called first to avoid errors.
We need to handle these two sheets specifically within this code using reflection. Currently, they are excluded from processing. Finding a clean way to handle these sheets properly without excluding them will be essential.
The text was updated successfully, but these errors were encountered:
Atralupus
changed the title
Special Handling Required for WorldBossKillRewardSheet and WorldBossBattleRewardSheet in TableSheetScrapper
Special Handling Required for WorldBossKillRewardSheet and WorldBossBattleRewardSheet in PatchTableHandler
Sep 3, 2024
In the this code, the conditional statement
if (sheetType == typeof(WorldBossKillRewardSheet) || sheetType == typeof(WorldBossBattleRewardSheet))
excludes these two sheets because they require a special treatment before accessing theirRune
values. TheSetRune
method must be called first to avoid errors.We need to handle these two sheets specifically within this code using reflection. Currently, they are excluded from processing. Finding a clean way to handle these sheets properly without excluding them will be essential.
The text was updated successfully, but these errors were encountered: