mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
typos
This commit is contained in:
parent
e8be81cd34
commit
7a54ef231e
3 changed files with 3 additions and 3 deletions
|
@ -124,6 +124,6 @@ class RiseFromTheGraveEffect extends ContinuousEffectImpl<RiseFromTheGraveEffect
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getText(Ability source) {
|
public String getText(Ability source) {
|
||||||
return "That creature is a black Zombie in addition to its other colors and types.";
|
return "That creature is a black Zombie in addition to its other colors and types";
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -103,7 +103,7 @@ class SilenceEffect extends ReplacementEffectImpl<SilenceEffect> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getText(Ability source) {
|
public String getText(Ability source) {
|
||||||
return "Your opponents can't cast spells this turn. ";
|
return "Your opponents can't cast spells this turn";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,6 +92,6 @@ class TimeWarpEffect extends OneShotEffect<TimeWarpEffect> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getText(Ability source) {
|
public String getText(Ability source) {
|
||||||
return "Target player takes an extra turn after this one.";
|
return "Target player takes an extra turn after this one";
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue