Skip to content

Commit

Permalink
Fix violent usage allowance indication logic
Browse files Browse the repository at this point in the history
  • Loading branch information
malaybaku committed Dec 2, 2023
1 parent 77ea1d5 commit 0e7e2bc
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 0e7e2bc

Please sign in to comment.