Skip to content

Commit

Permalink
1.0.0.14: force disable VFX due to crashing
Browse files Browse the repository at this point in the history
  • Loading branch information
kawaii committed Mar 14, 2024
1 parent 969afe3 commit 4ce6415
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Moodles/Data/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Config : IEzConfig
public bool Censor = false;
public bool AutoOther = false;

public bool EnableVFX = true;
internal bool EnableVFX => false;
public bool EnableFlyPopupText = true;
public int FlyPopupTextLimit = 10;

Expand Down
7 changes: 6 additions & 1 deletion Moodles/Gui/TabSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ public static void Draw()
{
ImGui.Checkbox($"Enable Moodles", ref C.Enabled);
ImGuiEx.Spacing();
ImGui.Checkbox("Enable VFX", ref C.EnableVFX);
//ImGui.Checkbox("Enable VFX", ref C.EnableVFX);
ImGui.BeginDisabled();
var a = false;
ImGui.Checkbox("Enable VFX", ref a);
ImGui.EndDisabled();
ImGuiEx.HelpMarker("VFX features are currently force disabled until a solution to crashing on Mare pair connect/disconnect can be found.");
ImGuiEx.Spacing();
ImGui.Checkbox($"Enable Fly/Popup Text", ref C.EnableFlyPopupText);
ImGuiEx.Spacing();
Expand Down
2 changes: 1 addition & 1 deletion Moodles/Moodles.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>kawaii</Authors>
<Version>1.0.0.13</Version>
<Version>1.0.0.14</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 4ce6415

Please sign in to comment.