This commit is contained in:
Ino 2025-08-04 03:40:30 +09:00
parent ed4edf999d
commit e4020e1c2a
1 changed files with 1 additions and 1 deletions

View File

@ -11890,7 +11890,7 @@ function Get_EnchantOptionID(enchantid, slot) {
var enchantData = Get_EnchantListTable().find(f=>f.n_EnchantID == enchantid);
// slot.Enchant에서 이미 사용된 ID 수집
var usedStats = slot.Enchant.map(e => e.ID);
var usedStats = slot ? slot.Enchant.map(e => e.ID) : [];
// 모든 옵션 ID 수집 (중복 포함)
var allIds = [];