This commit is contained in:
Ino 2025-07-08 14:20:42 +09:00
parent 0cc272183c
commit 06641b10f3
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ public class OptionConfigTableData : TableDataBase
set { _ExtraValue4 = value; _ExtraValue4.RandomizeCryptoKey(); } set { _ExtraValue4 = value; _ExtraValue4.RandomizeCryptoKey(); }
} // 옵션 고유 설정 값4 } // 옵션 고유 설정 값4
public float Get_Value(int lv) { return Get_Value(lv, f_BalanceConstant, n_DefaultValue, f_LevelPerValue); } public float Get_Value(int lv, bool abandon = false) { return Get_Value(lv, f_BalanceConstant, n_DefaultValue, f_LevelPerValue, abandon); }
} }
public class table_optionconfig : table_missionbase public class table_optionconfig : table_missionbase

View File

@ -54,7 +54,7 @@ public class PetUpgradeTableData : TableDataBase
if (grade < 4) id = table_GlobalValue.Ins.Get_Int("n_PetReinforcePriceOptionID1"); if (grade < 4) id = table_GlobalValue.Ins.Get_Int("n_PetReinforcePriceOptionID1");
else if (grade < 7) id = table_GlobalValue.Ins.Get_Int("n_PetReinforcePriceOptionID2"); else if (grade < 7) id = table_GlobalValue.Ins.Get_Int("n_PetReinforcePriceOptionID2");
return table_optionconfig.Ins.Get_Data(id).Get_Value(lv); return table_optionconfig.Ins.Get_Data(id).Get_Value(lv, true);
} }
} }