mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Eye of Ugin - Fixed tooltip text ("colorless" was missing).
This commit is contained in:
parent
f77e709f6b
commit
dda09ce535
2 changed files with 2 additions and 2 deletions
|
@ -132,7 +132,7 @@ public class User {
|
|||
}
|
||||
|
||||
public boolean isConnected() {
|
||||
return userState == UserState.Connected || userState == UserState.Reconnected;
|
||||
return userState.equals(UserState.Connected) || userState.equals(UserState.Reconnected);
|
||||
}
|
||||
|
||||
public String getDisconnectDuration() {
|
||||
|
|
|
@ -52,7 +52,7 @@ import mage.target.common.TargetCardInLibrary;
|
|||
*/
|
||||
public class EyeOfUgin extends CardImpl<EyeOfUgin> {
|
||||
|
||||
private static final FilterCreatureCard filter = new FilterCreatureCard();
|
||||
private static final FilterCreatureCard filter = new FilterCreatureCard("colorless creature card");
|
||||
private static final FilterSpell filterSpells = new FilterSpell("Colorless Eldrazi spells");
|
||||
|
||||
static {
|
||||
|
|
Loading…
Reference in a new issue