File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -45,15 +45,15 @@ endif
45
45
if (<CanSee <src>>) // If I can see my target.
46
46
// And my target is being ridden (should not happen) or ! CanSeeLos (Ignoring windows if i'm shooting).
47
47
if ( (<src.brain> && <src.flags>&statf_ridden) || !<CanSeeLosFlag <src>,<qval ( <Action>==archery || <action>==throwing )? LOS_NB_WINDOWS : 0>>)
48
- if ( !<serv.CombatFlags>&200 || <Swing>!=SWING_SWINGING) // I'm going to stop (unless i'm preparing to hit and Combat_StayInRange is not set).
48
+ if ( !<serv.CombatFlags>&0200 || <Swing>!=SWING_SWINGING) // I'm going to stop (unless i'm preparing to hit and Combat_StayInRange is not set).
49
49
argn1 SWING_READY
50
50
return 1
51
51
endif
52
52
argn1 SWING_EQUIPPING
53
53
return 1
54
54
endif
55
55
else
56
- if ( !<serv.CombatFlags>&200 || <Swing>!=SWING_SWINGING) // same here but without LOS check.
56
+ if ( !<serv.CombatFlags>&0200 || <Swing>!=SWING_SWINGING) // same here but without LOS check.
57
57
argn1 SWING_READY
58
58
return 1
59
59
endif
@@ -94,7 +94,7 @@ if (<weapon>)
94
94
95
95
if ( <local.dist> > <local.maxdist ) // If my target is far than my weapon's max distance...
96
96
97
- if ( !<serv.CombatFlags>&200 || <Swing>!=SWING_SWINGING) // and I'm not preparing to hit or not Combat_StayInRange
97
+ if ( !<serv.CombatFlags>&0200 || <Swing>!=SWING_SWINGING) // and I'm not preparing to hit or not Combat_StayInRange
98
98
argn1 SWING_READY
99
99
return 1
100
100
endif
Original file line number Diff line number Diff line change @@ -577,9 +577,9 @@ can_u_none 020
577
577
can_o_nosleep 010000000
578
578
579
579
[DEFNAME swing_types]
580
- war_swing_equipping 0 // we are recoiling our weapon.
581
- war_swing_ready 1 // we can swing at any time.
582
- war_swing_swinging 2 // we are swinging our weapon.
580
+ swing_equipping 0 // we are recoiling our weapon.
581
+ swing_ready 1 // we can swing at any time.
582
+ swing_swinging 2 // we are swinging our weapon.
583
583
584
584
[DEFNAME theme_packs]
585
585
theme_gothic 1
You can’t perform that action at this time.
0 commit comments