...
This commit is contained in:
parent
0cc272183c
commit
06641b10f3
|
|
@ -64,7 +64,7 @@ public class OptionConfigTableData : TableDataBase
|
|||
set { _ExtraValue4 = value; _ExtraValue4.RandomizeCryptoKey(); }
|
||||
} // 옵션 고유 설정 값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
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ public class PetUpgradeTableData : TableDataBase
|
|||
if (grade < 4) id = table_GlobalValue.Ins.Get_Int("n_PetReinforcePriceOptionID1");
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue