Added clickable page numbers to lookup pagination

This commit is contained in:
Intelli 2022-02-08 19:25:07 -07:00
parent 673529df54
commit 19efdeff89
10 changed files with 103 additions and 9 deletions

View file

@ -0,0 +1,20 @@
package net.coreprotect.patch.script;
import java.sql.Statement;
import net.coreprotect.config.ConfigFile;
public class __2_21_0 {
protected static boolean patch(Statement statement) {
try {
ConfigFile.modifyLine("language.yml", "LOOKUP_VIEW_PAGE: \"To view a page, type \\\"{0}\\\".\"", null);
}
catch (Exception e) {
e.printStackTrace();
}
return true;
}
}