boiscljo / SBA

An addon to ScreamingSandals bedwars plugin to hypixelify it!
GNU General Public License v3.0
20 stars 14 forks source link

PerWorldPlugins compatibility #12

Closed TonimatasDEV closed 1 year ago

TonimatasDEV commented 1 year ago

Screaming Bedwars and SBA works with PerWorldPlugins (1.1.4).

https://user-images.githubusercontent.com/79017964/213757240-bcc3e790-e750-47a8-b0d2-e85b3b4d9d26.mp4

boiscljo commented 1 year ago

I won't merge your PR due to it not handling version check, but I'll add the following code:

String version = PerWorldPlugin.getDescription().getVersion();
            isProblematic = 
                version.startsWith("1.0") ||
                version.startsWith("1.1.0") ||
                version.startsWith("1.1.1") ||
                version.startsWith("1.1.2") ||
                version.startsWith("1.1.3") ;

with the following warning

Logger.error("SBA FATAL ERROR::PerWorldPlugins version 1.1.3 or lower breaks custom plugin events required by Bedwars and SBA");
Logger.error("SBA Will shutdown due to incompatible plugin(s), You can update PerWorldPlugins to 1.1.4 or higher to fix it");
TonimatasDEV commented 1 year ago

I won't merge your PR due to it not handling version check, but I'll add the following code:

Thanks