Page 1 of 1

Planeswalker combat problem

PostPosted: 09 Feb 2010, 08:04
by gestalt
Hi,

It seems the planeswalker blocking is not functioning in current svn version. I think changing InputControl.java from
Code: Select all
                return new Input_Block();
to
Code: Select all
             if (AllZone.pwCombat.getAttackers().length != 0)
             {
                 return new Input_Block_Planeswalker();       
             }
             else
                return new Input_Block();
By the way my account just disappeared. I wonder if I did something wrong and I get banned or the forum db had a roll back. Anyways great work guys.

Re: Planeswalker combat problem

PostPosted: 09 Feb 2010, 09:46
by Huggybaby
Sorry about that, you weren't banned. :)
See viewtopic.php?f=26&t=2229

Re: Planeswalker combat problem

PostPosted: 09 Feb 2010, 17:53
by DennisBergkamp
gestalt wrote:Hi,

It seems the planeswalker blocking is not functioning in current svn version. I think changing InputControl.java from
Code: Select all
                return new Input_Block();
to
Code: Select all
             if (AllZone.pwCombat.getAttackers().length != 0)
             {
                 return new Input_Block_Planeswalker();       
             }
             else
                return new Input_Block();
By the way my account just disappeared. I wonder if I did something wrong and I get banned or the forum db had a roll back. Anyways great work guys.
Ahh, you're right. I'll make this change, thanks :)

By the way, I could give you committer privileges if you PM me your email address.