diff options
-rw-r--r-- | npc/items/emptybox.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/items/emptybox.txt b/npc/items/emptybox.txt index 4b3010dbb..c38626ecb 100644 --- a/npc/items/emptybox.txt +++ b/npc/items/emptybox.txt @@ -37,7 +37,7 @@ OnUse: .@amount = .@boxMatrix[.@matrixIndex]; .@itemID = .@boxMatrix[.@matrixIndex + 1]; - mesc l("- %03d %s", .@amount, getitemlink(.@itemID)); + mesc l("- %3d %s", .@amount, getitemlink(.@itemID)); if (countitem(.@itemID) >= .@amount) { array_push(.@menuOptions$, .@boxStrings[.@index]); array_push(.@menuOptions$, str(.@index)); |