Added a validate warning about FTL 1.5.13 for *.font files
This commit is contained in:
parent
9c30e4180a
commit
30840f0480
1 changed files with 6 additions and 0 deletions
|
@ -499,6 +499,12 @@ public class ModUtilities {
|
||||||
) );
|
) );
|
||||||
modValid = false;
|
modValid = false;
|
||||||
}
|
}
|
||||||
|
else if ( innerPath.matches( "^.*[.]font$" ) ) {
|
||||||
|
pendingMsgs.add( new ReportMessage(
|
||||||
|
ReportMessage.WARNING,
|
||||||
|
String.format( "The *.font files introduced with FTL 1.6.1 won't work in FTL 1.01-1.5.13, which used TTF fonts." )
|
||||||
|
) );
|
||||||
|
}
|
||||||
else if ( innerPath.matches( "^.*[.]mp3$" ) ) {
|
else if ( innerPath.matches( "^.*[.]mp3$" ) ) {
|
||||||
pendingMsgs.add( new ReportMessage(
|
pendingMsgs.add( new ReportMessage(
|
||||||
ReportMessage.WARNING,
|
ReportMessage.WARNING,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue