Skip to content

Commit

Permalink
Fix error introducido en PR de seguro NPC
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Caraballo committed Mar 4, 2024
1 parent fcb3444 commit 4bc8824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Codigo/MODULO_NPCs.bas
Original file line number Diff line number Diff line change
Expand Up @@ -2398,7 +2398,7 @@ Public Function CanAttackNotOwner(ByVal NpcIndex As Integer, ByVal UserIndex As
' Si el usuario puede atacar al NPC
If AttackResult.CanAttack Then
' Lo atacamos solo si puede atacar sin hacerse PK (no lo forzamos a hacerse PK)
CanAttackNotOwner = AttackResult.TurnPK
CanAttackNotOwner = Not AttackResult.TurnPK
Else
' En caso que el usuario no pueda atacar al NPC, este debe ignorarlo a el
' Excepto que no pueda atacar por los siguientes motivos: esta montado, esta fuera de su campo de vision
Expand Down

0 comments on commit 4bc8824

Please sign in to comment.