forked from Upstream/mmocore
Fixed issue #837 &838 about key combos being offset of 1 skill slot.
This commit is contained in:
parent
0acff060eb
commit
4812a48b3c
@ -112,7 +112,7 @@ public class KeyCombos implements SkillCastingListener {
|
|||||||
|
|
||||||
// Hash current combo and check
|
// Hash current combo and check
|
||||||
if (casting.combos.getCombos().containsKey(casting.current)) {
|
if (casting.combos.getCombos().containsKey(casting.current)) {
|
||||||
final int spellSlot = casting.combos.getCombos().get(casting.current) - 1;
|
final int spellSlot = casting.combos.getCombos().get(casting.current);
|
||||||
playerData.leaveSkillCasting();
|
playerData.leaveSkillCasting();
|
||||||
|
|
||||||
// Cast spell
|
// Cast spell
|
||||||
|
Loading…
Reference in New Issue
Block a user