Page 1 of 1

[1.2.1] Skirmisher Bash and Smash takes two turns

Posted: Fri Jun 06, 2014 5:23 pm
by Torokasi
See title. Easily seen if you use it with another enemy (beside the target) next to you; they'll get two actions off after you use it.

Re: [1.2.1] Skirmisher Bash and Smash takes two turns

Posted: Fri Jun 06, 2014 5:46 pm
by Suslik
i've seen similar behaviour with enemy stepping twice to me after being knocked back. but if i tried to reproduce it i failed: a skill on cooldown reduced the counter only by 1 after using mash and smash.

Re: [1.2.1] Skirmisher Bash and Smash takes two turns

Posted: Fri Jun 06, 2014 9:58 pm
by Torokasi
Hrm, curious. I'm not sure what's going on there; let me test cooldowns, but it's been very consistently letting enemies of any stripe double attack me.

Just tested: Swift Shot, then Bash and Smashed, and it took two turns cooldown off Swift Shot. It's possible it doesn't do so consistently, since sling shots are fast? That may have been why you didn't see the behavior?

Re: [1.2.1] Skirmisher Bash and Smash takes two turns

Posted: Fri Jun 06, 2014 9:59 pm
by Suslik
Torokasi wrote: Just tested: Swift Shot, then Bash and Smashed, and it took two turns cooldown off Swift Shot. It's possible it doesn't do so consistently, since sling shots are fast? That may have been why you didn't see the behavior?
May very well be the case

Re: [1.2.1] Skirmisher Bash and Smash takes two turns

Posted: Fri Jun 06, 2014 10:45 pm
by edge2054
I looked at this before going to the theater earlier.

I think the issue is..

Code: Select all

self:archeryShoot(targets, t, nil, {mult=t.getSlingMult(self, t), no_energy = true})
If I'm reading things right archeryShoot isn't where energy is checked but rather in...

Code: Select all

local targets = self:archeryAcquireTargets(nil, {one_shot=true, x=target.x, y=target.y})
So that should be...

Code: Select all

local targets = self:archeryAcquireTargets(nil, {no_energy=true, one_shot=true, x=target.x, y=target.y})
It would explain the inconsistency. If you kill something with the shield attacks the sling doesn't fire.

But I could be wrong and misreading everything.

Re: [1.2.1] Skirmisher Bash and Smash takes two turns

Posted: Sat Jun 07, 2014 3:40 pm
by Torokasi
I think, after testing, Hurricane Shot is doing this as well after it gets to L3.

This reminds me a lot of the Mindslayer bug, where some part of the action was taking more time since it didn't have a flag, IIRC?

Re: [1.2.1] Skirmisher Bash and Smash takes two turns

Posted: Sun Jun 08, 2014 9:57 am
by Fortescue
Crud. So 2 skills are doing this on Skirmisher now?