Skip to content

Commit

Permalink
Infer ERP as 18+ tag (#124)
Browse files Browse the repository at this point in the history
Co-authored-by: ike709 <ike709@users.noreply.github.com>
  • Loading branch information
AwareFoxy and ike709 authored Jan 3, 2024
1 parent 46248db commit d52953b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SS14.Launcher/Utility/ServerTagInfer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static IEnumerable<string> InferTags(ServerStatus status)
// Infer 18+
if (!currentTags.Contains(Tags.TagEighteenPlus))
{
if (tagLikes.Contains("18+") || tagLikes.Contains("+18") || tagLikes.Contains("18"))
if (tagLikes.Contains("18+") || tagLikes.Contains("+18") || tagLikes.Contains("18") || tagLikes.Contains("ERP"))
addedTags.Add(Tags.TagEighteenPlus);
}

Expand Down

0 comments on commit d52953b

Please sign in to comment.