Add missing space for legacy string, fixes #1516

This commit is contained in:
PikaMug 2020-12-21 23:29:43 -05:00
parent ae1a9f9df8
commit 374b3b2f3d

View File

@ -1104,7 +1104,8 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener
+ (data.mobNumKilled.get(data.mobsKilled.indexOf(e2))) + "/"
+ (stage.mobNumToKill.get(stage.mobsToKill.indexOf(e))));
} else {
message += ChatColor.AQUA + "<mob>" + color + ": "
// Legacy
message += ChatColor.AQUA + " <mob>" + color + ": "
+ (data.mobNumKilled.get(data.mobsKilled.indexOf(e2))) + "/"
+ (stage.mobNumToKill.get(stage.mobsToKill.indexOf(e)));
}