Make fishing rods usable while riding/surfing

This commit is contained in:
JappaWakka 2023-12-27 20:49:08 +01:00
parent 85bcb52780
commit e8da25f6bd
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ Namespace Items.KeyItems
End Sub
Public Overrides Sub Use()
If OldRod.IsInfrontOfWater() = True And Screen.Level.Surfing = False And Screen.Level.Riding = False Then
If OldRod.IsInfrontOfWater() = True Then
Dim s As String = "version=2"
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen

View File

@ -13,7 +13,7 @@ Namespace Items.KeyItems
End Sub
Public Overrides Sub Use()
If IsInfrontOfWater() = True And Screen.Level.Surfing = False And Screen.Level.Riding = False Then
If IsInfrontOfWater() = True Then
Dim s As String = "version=2"
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen

View File

@ -13,7 +13,7 @@ Namespace Items.KeyItems
End Sub
Public Overrides Sub Use()
If OldRod.IsInfrontOfWater() = True And Screen.Level.Surfing = False And Screen.Level.Riding = False Then
If OldRod.IsInfrontOfWater() = True Then
Dim s As String = "version=2"
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen