mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Enhance premium verification
This commit is contained in:
parent
4780fcd534
commit
6da4994955
2 changed files with 8 additions and 1 deletions
|
@ -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 "
|
||||
+ "problem\n\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(
|
||||
PremiumVerification.getDownloadID()).append("\n");
|
||||
b.append("# Server Information\n");
|
||||
|
|
|
@ -35,6 +35,13 @@ public class PremiumVerification {
|
|||
return "%%__USER__%%";
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Resource ID if downloaded through SpigotMC
|
||||
*/
|
||||
public static String getResourceID() {
|
||||
return "%%__RESOURCE__%%";
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Download ID if downloaded through SpigotMC
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue