Added a text message when selecting an item in battle that can't be used

The message says:
This item can't be used in Battle.
This commit is contained in:
JappaWakkaP3D 2021-08-20 15:10:39 +02:00
parent 1605ea8afd
commit 7f3445b727
1 changed files with 9 additions and 4 deletions

View File

@ -815,11 +815,16 @@ Public Class NewInventoryScreen
End If
If Controls.Accept() AndAlso _items.Length > 0 Then
_infoItemOptionSelection = 0
_isInfoShowing = True
Dim cItem As Item = Item.GetItemByID(_items(ItemIndex + PageIndex * 10).ItemID)
SoundManager.PlaySound("select")
SetInfoSettings()
SetItemOptions()
If cItem.CanBeUsedInBattle = True Then
_infoItemOptionSelection = 0
_isInfoShowing = True
SetInfoSettings()
SetItemOptions()
Else
TextBox.Show("This item can't~be used in Battle.")
End If
End If
If Controls.Dismiss() Then