mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 02:15:32 +00:00
Replace spelling: soulgem -> soul gem
This commit is contained in:
parent
028b528c0b
commit
9ed4f33048
4 changed files with 8 additions and 8 deletions
|
@ -23,7 +23,7 @@ bool Launcher::AdvancedPage::loadSettings()
|
|||
loadSettingBool(showEnchantChanceCheckBox, "show enchant chance", "Game");
|
||||
loadSettingBool(showMeleeInfoCheckBox, "show melee info", "Game");
|
||||
loadSettingBool(showProjectileDamageCheckBox, "show projectile damage", "Game");
|
||||
loadSettingBool(rebalanceSoulgemValuesCheckBox, "rebalance soulgem values", "Game");
|
||||
loadSettingBool(rebalanceSoulGemValuesCheckBox, "rebalance soul gem values", "Game");
|
||||
|
||||
// Expected values are (0, 1, 2, 3)
|
||||
int showOwnedIndex = mEngineSettings.getInt("show owned", "Game");
|
||||
|
@ -62,7 +62,7 @@ void Launcher::AdvancedPage::saveSettings()
|
|||
saveSettingBool(showEnchantChanceCheckBox, "show enchant chance", "Game");
|
||||
saveSettingBool(showMeleeInfoCheckBox, "show melee info", "Game");
|
||||
saveSettingBool(showProjectileDamageCheckBox, "show projectile damage", "Game");
|
||||
saveSettingBool(rebalanceSoulgemValuesCheckBox, "rebalance soulgem values", "Game");
|
||||
saveSettingBool(rebalanceSoulGemValuesCheckBox, "rebalance soul gem values", "Game");
|
||||
|
||||
int showOwnedCurrentIndex = showOwnedComboBox->currentIndex();
|
||||
if (showOwnedCurrentIndex != mEngineSettings.getInt("show owned", "Game"))
|
||||
|
|
|
@ -88,7 +88,7 @@ namespace MWClass
|
|||
if (creature)
|
||||
{
|
||||
int soul = creature->mData.mSoul;
|
||||
if (Settings::Manager::getBool("rebalance soulgem values", "Game"))
|
||||
if (Settings::Manager::getBool("rebalance soul gem values", "Game"))
|
||||
{
|
||||
// use soulgem value rebalance formula from morrowind code patch
|
||||
float soulValue = 0.0001 * pow(soul, 3) + 2 * soul;
|
||||
|
|
|
@ -216,8 +216,8 @@ followers attack on sight = false
|
|||
# Can loot non-fighting actors during death animation
|
||||
can loot during death animation = true
|
||||
|
||||
# Makes the value of filled soulgems dependent only on soul magnitude (with formula from the Morrowind Code Patch)
|
||||
rebalance soulgem values = false
|
||||
# Makes the value of filled soul gems dependent only on soul magnitude (with formula from the Morrowind Code Patch)
|
||||
rebalance soul gem values = false
|
||||
|
||||
[General]
|
||||
|
||||
|
|
|
@ -110,12 +110,12 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="rebalanceSoulgemValuesCheckBox">
|
||||
<widget class="QCheckBox" name="rebalanceSoulGemValuesCheckBox">
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p>If this setting is true, the value of filled soulgems is dependent only on soul magnitude.</p><p>The default value is false.</p></body></html></string>
|
||||
<string><html><head/><body><p>If this setting is true, the value of filled soul gems is dependent only on soul magnitude.</p><p>The default value is false.</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Rebalance soulgem values</string>
|
||||
<string>Rebalance soul gem values</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
Loading…
Reference in a new issue