From 0e7e2bc92123b7caaed7be65214bdafb5b8c26d4 Mon Sep 17 00:00:00 2001 From: Baku Dreameater Date: Sat, 2 Dec 2023 14:44:41 +0900 Subject: [PATCH] Fix violent usage allowance indication logic --- .../Assets/Baku/VMagicMirror/Scripts/UI/VRM10MetaView.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VMagicMirror/Assets/Baku/VMagicMirror/Scripts/UI/VRM10MetaView.cs b/VMagicMirror/Assets/Baku/VMagicMirror/Scripts/UI/VRM10MetaView.cs index 5b2cb312a..da8cb634f 100644 --- a/VMagicMirror/Assets/Baku/VMagicMirror/Scripts/UI/VRM10MetaView.cs +++ b/VMagicMirror/Assets/Baku/VMagicMirror/Scripts/UI/VRM10MetaView.cs @@ -147,9 +147,9 @@ public void Update(Meta meta, PreviewUILocale locale) avatarPermission.text = GetAvatarPermissionString(meta.AvatarPermission, locale); allowExcessiveViolentUsage.text = - GetUsageAllowString(meta.AllowExcessivelySexualUsage == true, locale); + GetUsageAllowString(meta.AllowExcessivelyViolentUsage == true, locale); allowExcessiveViolentUsage.color = - GetUsageAllowColor(meta.AllowExcessivelySexualUsage == true); + GetUsageAllowColor(meta.AllowExcessivelyViolentUsage == true); allowExcessiveSexualUsage.text = GetUsageAllowString(meta.AllowExcessivelySexualUsage == true, locale); allowExcessiveSexualUsage.color =