From 1f7e81c1f34fcc898f259ea7eef86066d9413c95 Mon Sep 17 00:00:00 2001 From: AreiaAard Date: Thu, 15 Apr 2021 18:06:42 -0400 Subject: [PATCH] Fix Consider.mob output of nil for level range 14, improve output alignment --- areia_consider.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/areia_consider.xml b/areia_consider.xml index a199517..a56fdb0 100644 --- a/areia_consider.xml +++ b/areia_consider.xml @@ -448,10 +448,10 @@ function Consider.mob(trigger, line, wc) mob.ignore = Settings.should_ignore(mob) table.insert(Consider.mobs, 1, mob) if (Settings.config.showConsiderOutput) then - Utility.print(string.format("%-10.10s %s, %s, %s", + Utility.print(string.format("%-10.10s%-35.35s | %-11.11s | %s", mob.ignore and "(Ignored)" or "", mob.name, - flagsStr ~= "" and flagsStr or "None", - Consider.LEVEL_RANGE[mob.levelRange] + Consider.LEVEL_RANGE[mob.levelRange] or "Protected", + flagsStr ~= "" and wc.flags or "None" )) end end