mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-07-22 21:35:07 +02:00
Placed a ) in the wrong spot & forgot a space
This commit is contained in:
parent
128556196e
commit
152422903d
@ -170,7 +170,7 @@ Public Class PlayerInventory
|
||||
Public Function GetMessageReceive(ByVal Item As Item, ByVal Amount As Integer) As String
|
||||
Dim Message As String
|
||||
If Amount = 1 Then
|
||||
Message = Localization.GetString("item_stored_in_pocket_single_start", "<player.name> stored it in the~").Replace("<player.name>", Core.Player.Name) & Core.Player.Inventory.GetItemPocketChar(Item) & Item.ItemType.ToString() & " " & Localization.GetString("item_stored_in_pocket_single_end", "pocket.").Replace("<player.name>", Core.Player.Name)
|
||||
Message = Localization.GetString("item_stored_in_pocket_single_start", "<player.name> stored it in the~").Replace("<player.name>", Core.Player.Name) & " " & Core.Player.Inventory.GetItemPocketChar(Item) & Item.ItemType.ToString() & " " & Localization.GetString("item_stored_in_pocket_single_end", "pocket.").Replace("<player.name>", Core.Player.Name)
|
||||
Else
|
||||
Message = Localization.GetString("item_stored_in_pocket_multiple_start", "<player.name> stored them~in the").Replace("<player.name>", Core.Player.Name) & " " & Core.Player.Inventory.GetItemPocketChar(Item) & Item.ItemType.ToString() & " " & Localization.GetString("item_stored_in_pocket_multiple_end", "pocket.").Replace("<player.name>", Core.Player.Name)
|
||||
End If
|
||||
|
@ -110,7 +110,7 @@
|
||||
Dim Amount As Integer = int(argument.GetSplit(1))
|
||||
|
||||
If Not item Is Nothing Then
|
||||
Dim receiveString As String = Localization.GetString("item_received_single", "Received the~" & item.Name & ".*")
|
||||
Dim receiveString As String = Localization.GetString("item_received_single", "Received the~") & item.Name & ".*"
|
||||
If Amount > 1 Then
|
||||
receiveString = Localization.GetString("item_received_multiple", "Received") & " " & Amount & "~" & item.PluralName & ".*"
|
||||
End If
|
||||
|
Loading…
x
Reference in New Issue
Block a user