Skip to content

Commit

Permalink
Merge pull request #111 from ao-libre/clasesprohibidas
Browse files Browse the repository at this point in the history
Fixed Forbidden Classes by item with cp flag
  • Loading branch information
RecoX authored Mar 31, 2019
2 parents 238788d + b63128f commit 7a9dd94
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Codigo/InvUsuario.bas
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,10 @@ Function ClasePuedeUsarItem(ByVal Userindex As Integer, _
Optional ByRef sMotivo As String) As Boolean
'***************************************************
'Author: Unknown
'Last Modification: 08/08/2015
'Last Modification: 01/04/2019
'14/01/2010: ZaMa - Agrego el motivo por el que no puede equipar/usar el item.
'08/08/2015: Shak - Hechizos por clase
'01/04/2019: Recox - Se arreglo la prohibicion de hechizos por clase
'***************************************************

On Error GoTo manejador
Expand All @@ -90,18 +91,17 @@ Function ClasePuedeUsarItem(ByVal Userindex As Integer, _

'//Si es un hechizo
If ObjData(ObjIndex).OBJType = eOBJType.otPergaminos Then
ClasePuedeUsarItem = False
sMotivo = "Tu clase no tiene la habilidad de aprender este hechizo."
ClasePuedeUsarItem = False
Exit Function
Else
sMotivo = "Tu clase no puede usar este objeto."

ClasePuedeUsarItem = False
Exit Function
End If

End If

ClasePuedeUsarItem = False
Exit Function

Next i

End If
Expand Down

0 comments on commit 7a9dd94

Please sign in to comment.