Make fishing rods usable while riding/surfing
This commit is contained in:
parent
85bcb52780
commit
e8da25f6bd
|
@ -13,7 +13,7 @@ Namespace Items.KeyItems
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Overrides Sub Use()
|
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"
|
Dim s As String = "version=2"
|
||||||
|
|
||||||
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
||||||
|
|
|
@ -13,7 +13,7 @@ Namespace Items.KeyItems
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Overrides Sub Use()
|
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"
|
Dim s As String = "version=2"
|
||||||
|
|
||||||
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
||||||
|
|
|
@ -13,7 +13,7 @@ Namespace Items.KeyItems
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Overrides Sub Use()
|
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"
|
Dim s As String = "version=2"
|
||||||
|
|
||||||
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
||||||
|
|
Loading…
Reference in New Issue