Enhance premium verification

This commit is contained in:
N0tMyFaultOG 2020-04-21 23:06:11 +02:00
parent 4780fcd534
commit 6da4994955
2 changed files with 8 additions and 1 deletions

View File

@ -81,7 +81,7 @@ public class DebugPaste extends SubCommand {
"# Welcome to this paste\n# It is meant to provide us at IntellectualSites with better information about your " "# Welcome to this paste\n# It is meant to provide us at IntellectualSites with better information about your "
+ "problem\n\n"); + "problem\n\n");
b.append("# PlotSquared Information\n"); b.append("# PlotSquared Information\n");
b.append("This PlotSquared version is licensed to the spigot user ") b.append("This PlotSquared version (").append(PremiumVerification.getResourceID()).append(") is licensed to the spigot user ")
.append(PremiumVerification.getUserID()).append(" under ").append( .append(PremiumVerification.getUserID()).append(" under ").append(
PremiumVerification.getDownloadID()).append("\n"); PremiumVerification.getDownloadID()).append("\n");
b.append("# Server Information\n"); b.append("# Server Information\n");

View File

@ -35,6 +35,13 @@ public class PremiumVerification {
return "%%__USER__%%"; return "%%__USER__%%";
} }
/**
* @return Resource ID if downloaded through SpigotMC
*/
public static String getResourceID() {
return "%%__RESOURCE__%%";
}
/** /**
* @return Download ID if downloaded through SpigotMC * @return Download ID if downloaded through SpigotMC
*/ */