Skip to content

Commit

Permalink
Update message slightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Feb 18, 2025
1 parent a561e70 commit 41672c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Penumbra/Collections/Cache/CollectionCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,11 @@ private static bool IsRedirectionSupported(Utf8GamePath path, IMod mod)
{
case ".atch" or ".eqp" or ".eqdp" or ".est" or ".gmp" or ".cmp" or ".imc":
Penumbra.Messager.NotificationMessage(
$"Redirection of {ext} files for {mod.Name} is unsupported. Please use the corresponding meta manipulations instead.",
$"Redirection of {ext} files for {mod.Name} is unsupported. This probably means that the mod is outdated and may not work correctly.\n\nPlease tell the mod creator to use the corresponding meta manipulations instead.",
NotificationType.Warning);
return false;
case ".lvb" or ".lgb" or ".sgb":
Penumbra.Messager.NotificationMessage($"Redirection of {ext} files for {mod.Name} is unsupported as this breaks the game.",
Penumbra.Messager.NotificationMessage($"Redirection of {ext} files for {mod.Name} is unsupported as this breaks the game.\n\nThis mod will probably not work correctly.",
NotificationType.Warning);
return false;
default: return true;
Expand Down

0 comments on commit 41672c3

Please sign in to comment.