mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-29 19:18:58 -07:00
Used Cvars to make it part of the enhancements menu
This commit is contained in:
parent
24fd3f1cdd
commit
2e84a351b1
3 changed files with 3 additions and 1 deletions
|
@ -678,6 +678,7 @@ namespace SohImGui {
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
EnhancementCheckbox("Fix L&R Pause menu", "gUniformLR");
|
EnhancementCheckbox("Fix L&R Pause menu", "gUniformLR");
|
||||||
EnhancementCheckbox("Fix Dungeon entrances", "gFixDungeonMinimapIcon");
|
EnhancementCheckbox("Fix Dungeon entrances", "gFixDungeonMinimapIcon");
|
||||||
|
EnhancementCheckbox("Fix Two Handed idle animations", "gTwoHandedIdle");
|
||||||
|
|
||||||
EXPERIMENTAL();
|
EXPERIMENTAL();
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,7 @@ void BootCommands_Init()
|
||||||
CVar_RegisterS32("gMinimalUI", 0);
|
CVar_RegisterS32("gMinimalUI", 0);
|
||||||
CVar_RegisterS32("gRumbleEnabled", 0);
|
CVar_RegisterS32("gRumbleEnabled", 0);
|
||||||
CVar_RegisterS32("gUniformLR", 1);
|
CVar_RegisterS32("gUniformLR", 1);
|
||||||
|
CVar_RegisterS32("gTwoHandedIdle", 1);
|
||||||
CVar_RegisterS32("gNewDrops", 0);
|
CVar_RegisterS32("gNewDrops", 0);
|
||||||
CVar_RegisterS32("gVisualAgony", 0);
|
CVar_RegisterS32("gVisualAgony", 0);
|
||||||
CVar_RegisterS32("gLanguages", 0); //0 = English / 1 = German / 2 = French
|
CVar_RegisterS32("gLanguages", 0); //0 = English / 1 = German / 2 = French
|
||||||
|
|
|
@ -6981,7 +6981,7 @@ void func_808409CC(GlobalContext* globalCtx, Player* this) {
|
||||||
if (sp34 < 4) {
|
if (sp34 < 4) {
|
||||||
if (((sp34 != 0) && (sp34 != 3)) || ((this->rightHandType == PLAYER_MODELTYPE_RH_SHIELD) &&
|
if (((sp34 != 0) && (sp34 != 3)) || ((this->rightHandType == PLAYER_MODELTYPE_RH_SHIELD) &&
|
||||||
((sp34 == 3) || Player_GetSwordHeld(this)))) {
|
((sp34 == 3) || Player_GetSwordHeld(this)))) {
|
||||||
if ((sp34 == 1) && Player_HoldsTwoHandedWeapon(this)) {
|
if ((sp34 == 1) && Player_HoldsTwoHandedWeapon(this) && CVar_GetS32("gTwoHandedIdle", 1) == 1) {
|
||||||
sp34 = 4;
|
sp34 = 4;
|
||||||
}
|
}
|
||||||
sp38 = sp34 + 9;
|
sp38 = sp34 + 9;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue