From a4229b072427b01af5e09e131a9898a26672cf13 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 2 Sep 2019 00:53:48 +0200 Subject: [PATCH] Add emoji to dnditem --- royalnet/commands/royalgames/dnditem.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/royalnet/commands/royalgames/dnditem.py b/royalnet/commands/royalgames/dnditem.py index d86c5875..1ce43933 100644 --- a/royalnet/commands/royalgames/dnditem.py +++ b/royalnet/commands/royalgames/dnditem.py @@ -43,12 +43,12 @@ class DnditemCommand(Command): return search = args.joined().lower() result = self._dnddata[self._dnddata.bisect_key_left(search)] - string = f'[b]{result["name"]}[/b]\n' + string = f'📦 [b]{result["name"]}[/b]\n' if "source" in result: string += f'[i]{result["source"]}, page {result["page"]}[/i]\n' string += f'\n' \ f'Type: [b]{result.get("type", "None")}[/b]\n' \ - f'Value: [b]{result.get("value", "Priceless")}[/b]\n' \ + f'Value: [b]{result.get("value", "-")}[/b]\n' \ f'Weight: [b]{result.get("weight", "0")} lb[/b]\n' \ f'Rarity: [b]{result["rarity"] if result.get("rarity", "None") != "None" else "Mundane"}[/b]\n' \ f'\n'