Skip to content
This repository has been archived by the owner on May 28, 2023. It is now read-only.

Commit

Permalink
Temporarily disabling placement from the plugin due to uncertainty on…
Browse files Browse the repository at this point in the history
… the Actor flags offset. Just want to get a working plugin out the door ASAP for 5.3.
  • Loading branch information
PunishedPineapple committed Aug 12, 2020
1 parent 4ef572e commit 67b3aed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion WaymarkPresetPlugin/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public bool ShowLibraryIndexInPresetInfo
public bool mAllowDirectPlacePreset = false;
public bool AllowDirectPlacePreset
{
get { return mAllowDirectPlacePreset; }
get { return false; }
set { mAllowDirectPlacePreset = value; }
}

Expand Down
4 changes: 2 additions & 2 deletions WaymarkPresetPlugin/PluginUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,8 @@ protected void DrawSettingsWindow()
ImGui.Checkbox( "Show \"Filter on Current Zone\" checkbox.", ref mConfiguration.mShowFilterOnCurrentZoneCheckbox );
ImGui.Checkbox( "Show ID numbers next to zone names.", ref mConfiguration.mShowIDNumberNextToZoneNames );
ImGui.Checkbox( "Show the index of the preset within the library.", ref mConfiguration.mShowLibraryIndexInPresetList );
ImGui.Checkbox( "Allow placement of presets directly from the library*.", ref mConfiguration.mAllowDirectPlacePreset );
ImGui.Text( "*Please read the plugin site's readme before enabling this." );
/*ImGui.Checkbox( "Allow placement of presets directly from the library*.", ref mConfiguration.mAllowDirectPlacePreset );
ImGui.Text( "*Please read the plugin site's readme before enabling this." );*/
if( !mConfiguration.ShowFilterOnCurrentZoneCheckbox ) FilterOnCurrentZone = false;
ImGui.Spacing();
if( ImGui.Button( "Save and Close" ) )
Expand Down

0 comments on commit 67b3aed

Please sign in to comment.