Skip to content

Commit

Permalink
SkriptError - add addon version (#2588)
Browse files Browse the repository at this point in the history
* Skript - mainClass - change
- Add version to addon

* Skript - mainClass - change
- Shortened everything down to getFullName

* Revert "Skript - mainClass - change - Shortened everything down to getFullName"

This reverts commit 8950547

* Skript - mainClass - changes
- Changed to getFullName
  • Loading branch information
bensku authored Nov 4, 2019
2 parents 5fc28b8 + 0b2e024 commit ac2a62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/Skript.java
Original file line number Diff line number Diff line change
Expand Up @@ -1583,7 +1583,7 @@ public static EmptyStacktraceException exception(@Nullable Throwable cause, fina
logEx("Here is full list of them:");
StringBuilder pluginsMessage = new StringBuilder();
for (PluginDescriptionFile desc : pluginPackages.values()) {
pluginsMessage.append(desc.getName());
pluginsMessage.append(desc.getFullName());
String website = desc.getWebsite();
if (website != null && !website.isEmpty()) // Add website if found
pluginsMessage.append(" (").append(desc.getWebsite()).append(")");
Expand Down

0 comments on commit ac2a62c

Please sign in to comment.