Skip to content

Commit

Permalink
Merge pull request #1004 from malaybaku/feature/fix_vrm1_license_indi…
Browse files Browse the repository at this point in the history
…cation

VRM10のロード時に「過剰な暴力表現」の表示に誤って「過剰な性的表現」の値が使われていたのを修正
  • Loading branch information
malaybaku authored Dec 2, 2023
2 parents 77ea1d5 + 0e7e2bc commit a889fa7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit a889fa7

Please sign in to comment.