This commit is contained in:
kmyuhkyuk 2024-11-27 11:40:32 +08:00
parent 6de5607c6a
commit de8f444b4e
3 changed files with 4 additions and 4 deletions

View File

@ -17,9 +17,9 @@ namespace Build
var sha = Copy.GetTipSha(args.ElementAtOrDefault(1));
const string modPath =
@"R:\Battlestate Games\Client.0.14.1.2.29197\BepInEx\plugins\kmyuhkyuk-HideDress";
@"R:\Battlestate Games\Client.0.15.5.1.33420\BepInEx\plugins\kmyuhkyuk-HideDress";
var versionName = "1.3.0";
const string versionName = "1.3.0";
var releaseName = $"{new DirectoryInfo(modPath).Name}-(Release_{versionName}).7z";

View File

@ -21,7 +21,7 @@
/// Never displayed Plugin
/// </summary>
/// <remarks>
/// Copy <see cref="BrowsableAttribute" />
/// Copy <see cref="System.ComponentModel.BrowsableAttribute" />
/// </remarks>
public bool HidePlugin;

View File

@ -33,7 +33,7 @@ namespace HideDress.Models
RefRenderers = RefHelper.FieldRef<Dress, Renderer[]>.Create("Renderers");
PlayerModelViewShow = RefHelper.HookRef.Create(typeof(PlayerModelView),
x => x.Name == "Show" && x.GetParameters()[0].ParameterType == typeof(PlayerVisualRepresentation));
x => x.Name == "Show" && x.GetParameters()[0].ParameterType != typeof(Profile));
}
}
}