1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Merge pull request #1262 from J3fftw1/qol/sf-version

added cscorelib version to the guide
This commit is contained in:
TheBusyBiscuit 2019-11-26 23:42:14 +01:00 committed by GitHub
commit c6efbc7205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions

View File

@ -424,7 +424,7 @@ public class ChestSlimefunGuide implements ISlimefunGuide {
return false;
});
} catch (Exception x) {
Slimefun.getLogger().log(Level.SEVERE, "An Error occured while adding a Wiki Page for Slimefun " + Slimefun.getVersion(), x);
Slimefun.getLogger().log(Level.SEVERE, "An Error occurred while adding a Wiki Page for Slimefun " + Slimefun.getVersion(), x);
}
}
@ -439,7 +439,7 @@ public class ChestSlimefunGuide implements ISlimefunGuide {
return false;
});
} catch (Exception x) {
Slimefun.getLogger().log(Level.SEVERE, "An Error occured while adding a Youtube Video for Slimefun " + Slimefun.getVersion(), x);
Slimefun.getLogger().log(Level.SEVERE, "An Error occurred while adding a Youtube Video for Slimefun " + Slimefun.getVersion(), x);
}
}

View File

@ -7,6 +7,7 @@ import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import me.mrCookieSlime.CSCoreLibPlugin.CSCoreLib;
import org.bukkit.ChatColor;
import org.bukkit.Material;
import org.bukkit.Sound;
@ -94,7 +95,16 @@ public final class GuideSettings {
});
}
menu.addItem(3, new CustomItem(new ItemStack(Material.WRITABLE_BOOK), "&aCredits", "", "&7Version: &a" + Slimefun.getVersion(), "&7Installed Addons: &b" + Slimefun.getInstalledAddons().size(), "&7Contributors: &e" + SlimefunPlugin.getUtilities().contributors.size(), "", "&7\u21E8 Click to see the people behind this Plugin"));
menu.addItem(3, new CustomItem(new ItemStack(Material.WRITABLE_BOOK),
"&aCredits",
"",
"&7Slimefun Version: &a" + Slimefun.getVersion(),
"&7CS-CoreLib Version: &a" + CSCoreLib.getLib().getDescription().getVersion(),
"&7Installed Addons: &b" + Slimefun.getInstalledAddons().size(),
"&7Contributors: &e" + SlimefunPlugin.getUtilities().contributors.size(),
"",
"&7\u21E8 Click to see the people behind this Plugin"
));
menu.addMenuClickHandler(3, (pl, slot, item, action) -> {
openCredits(pl, 0);
return false;