Fix medicine usage text out of bounds
This commit is contained in:
parent
7d1931abd1
commit
714869290c
|
@ -77,7 +77,7 @@ Namespace Items
|
||||||
|
|
||||||
Screen.TextBox.reDelay = 0.0F
|
Screen.TextBox.reDelay = 0.0F
|
||||||
|
|
||||||
Dim t As String = "Cures the poison of " & Pokemon.GetDisplayName() & "."
|
Dim t As String = "Cures the poison~of " & Pokemon.GetDisplayName() & "."
|
||||||
t &= RemoveItem()
|
t &= RemoveItem()
|
||||||
PlayerStatistics.Track("[17]Medicine Items used", 1)
|
PlayerStatistics.Track("[17]Medicine Items used", 1)
|
||||||
|
|
||||||
|
@ -114,7 +114,7 @@ Namespace Items
|
||||||
|
|
||||||
Screen.TextBox.reDelay = 0.0F
|
Screen.TextBox.reDelay = 0.0F
|
||||||
|
|
||||||
Dim t As String = "Cures the sleep of " & Pokemon.GetDisplayName() & "."
|
Dim t As String = "Cures the sleep~of " & Pokemon.GetDisplayName() & "."
|
||||||
t &= RemoveItem()
|
t &= RemoveItem()
|
||||||
|
|
||||||
SoundManager.PlaySound("Use_Item", False)
|
SoundManager.PlaySound("Use_Item", False)
|
||||||
|
@ -151,7 +151,7 @@ Namespace Items
|
||||||
|
|
||||||
Screen.TextBox.reDelay = 0.0F
|
Screen.TextBox.reDelay = 0.0F
|
||||||
|
|
||||||
Dim t As String = "Cures the burn of " & Pokemon.GetDisplayName() & "."
|
Dim t As String = "Cures the burn~of " & Pokemon.GetDisplayName() & "."
|
||||||
t &= RemoveItem()
|
t &= RemoveItem()
|
||||||
|
|
||||||
SoundManager.PlaySound("Use_Item", False)
|
SoundManager.PlaySound("Use_Item", False)
|
||||||
|
@ -190,7 +190,7 @@ Namespace Items
|
||||||
|
|
||||||
Screen.TextBox.reDelay = 0.0F
|
Screen.TextBox.reDelay = 0.0F
|
||||||
|
|
||||||
Dim t As String = "Cures the ice of " & Pokemon.GetDisplayName() & "."
|
Dim t As String = "Cures the ice~of " & Pokemon.GetDisplayName() & "."
|
||||||
t &= RemoveItem()
|
t &= RemoveItem()
|
||||||
|
|
||||||
SoundManager.PlaySound("Use_Item", False)
|
SoundManager.PlaySound("Use_Item", False)
|
||||||
|
|
Loading…
Reference in New Issue