1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-29 14:05:25 +01:00

Include displayName into example job file

This commit is contained in:
montlikadani 2021-05-05 13:11:22 +02:00
parent 45dc194b81
commit 576b42dc2e
2 changed files with 5 additions and 6 deletions

View File

@ -109,7 +109,6 @@ public class ConfigManager {
cfg.addComment(pt + ".displayName", "Jobs display name used only for visualization in specific parts. Can contain spaces and color codes");
cfg.get(pt + ".displayName", "&2--{#cancan}Woodcutter&2--");
cfg.addComment(pt + ".shortname", "Shortened version of the name of the job. Used as a prefix when the user has more than 1 job.");
cfg.get(pt + ".shortname", "W");
cfg.get(pt + ".description", "Earns money felling and planting trees");
@ -765,14 +764,11 @@ public class ConfigManager {
log.warning("Job " + jobKey + " has an invalid fullname property. Skipping job!");
continue;
}
// Translating unicode
jobFullName = StringEscapeUtils.unescapeJava(jobFullName);
String jobDisplayName = null;
if (jobSection.isString("displayName"))
jobDisplayName =jobSection.getString("displayName");
String jobDisplayName = jobSection.getString("displayName");
int maxLevel = jobSection.getInt("max-level");
if (maxLevel < 0)

View File

@ -17,6 +17,9 @@ exampleJob:
# Shortened version of the name of the job. Used as a prefix when the user has more than 1 job.
shortname: W
# Jobs display name used only for visualization in specific parts. Can contain spaces and color codes
displayName: "&2--{#cancan}Woodcutter&2--"
# The short description of job
# Please try to not use this, use FullDescription below
#description: Earns money felling and planting trees