Note how many extra files there were

This commit is contained in:
libraryaddict 2024-04-09 00:05:13 +12:00
parent 4653366231
commit 1566b39a95
1 changed files with 6 additions and 6 deletions

View File

@ -210,13 +210,13 @@ public class LibsDisguises extends JavaPlugin {
buildDate = StringUtils.stripToNull(pluginYml.getString("build-date"));
int fileCount = ReflectionManager.getJarFileCount(getFile(), CompileMethods.ignoredDirectories());
int expected = pluginYml.getInt("file-count", fileCount);
if (fileCount != pluginYml.getInt("file-count", fileCount)) {
getLogger().severe(
"Lib's Disguises may be infected with malware, please redownload from a trusted source such as SpigotMC. If this " +
"warning shows even after" +
" updating, try https://www.spigotmc.org/resources/spigot-anti-malware.64982/ otherwise if that doesn't help then" +
" please contact " + "libraryaddict on discord https://discord.gg/J5XRqYX");
if (fileCount != expected) {
getLogger().severe("Lib's Disguises may be infected with malware, there were " + (fileCount - expected) +
" unknown files injected into the jar. Please redownload from a trusted source such as SpigotMC. If this warning " +
"shows even after updating, try https://www.spigotmc.org/resources/spigot-anti-malware.64982/ otherwise if that " +
"doesn't help then please contact libraryaddict on discord https://discord.gg/J5XRqYX");
}
getLogger().info("File Name: " + getFile().getName());