Fixed warning in one of the DoInventory constructs
This commit is contained in:
parent
6362fb871a
commit
893c8acd99
|
@ -27,7 +27,7 @@
|
|||
If argument.Contains(",") Then
|
||||
Select Case argument.GetSplit(1).ToLower()
|
||||
Case "p", "plural"
|
||||
Return Item.GetItemByID(ItemID).PluralName
|
||||
Return Item.GetItemByID(int(ItemID)).PluralName
|
||||
Case "s", "singular"
|
||||
Return Item.GetItemByID(int(ItemID)).Name
|
||||
End Select
|
||||
|
|
Loading…
Reference in New Issue