mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 15:58:36 +00:00
Weapons allow NPCs to facestab
This commit is contained in:
@@ -528,8 +528,8 @@ void Mob::TryBackstab(Mob *other, int ReuseTime) {
|
||||
bCanFrontalBS = true;
|
||||
}
|
||||
|
||||
if (bIsBehind || bCanFrontalBS){ // Player is behind other OR can do Frontal Backstab
|
||||
if (bCanFrontalBS)
|
||||
if (bIsBehind || bCanFrontalBS || (IsNPC() && CanFacestab())) { // Player is behind other OR can do Frontal Backstab
|
||||
if (bCanFrontalBS && IsClient()) // I don't think there is any message ...
|
||||
CastToClient()->Message(0,"Your fierce attack is executed with such grace, your target did not see it coming!");
|
||||
|
||||
RogueBackstab(other,false,ReuseTime);
|
||||
|
||||
Reference in New Issue
Block a user