mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
More sensible parameter ordering
This commit is contained in:
parent
0bc473f4b2
commit
26a95eed51
5 changed files with 11 additions and 11 deletions
|
|
@ -42,14 +42,14 @@ public class BecomesCreatureSourceEffect extends ContinuousEffectImpl implements
|
|||
}
|
||||
|
||||
/**
|
||||
@param token Token as blueprint for creature to become
|
||||
@param theyAreStillType String for rules text generation
|
||||
@param duration Duration for the effect
|
||||
@param losePreviousTypes if true, permanent loses its previous types
|
||||
@param characterDefining if true, effect applies on layer 7a (it probably shouldn't)
|
||||
@param loseAbilities if true, permanent loses its other abilities
|
||||
* @param token Token as blueprint for creature to become
|
||||
* @param theyAreStillType String for rules text generation
|
||||
* @param duration Duration for the effect
|
||||
* @param losePreviousTypes if true, permanent loses its previous types
|
||||
* @param loseAbilities if true, permanent loses its other abilities
|
||||
* @param characterDefining if true, effect applies on layer 7a (it probably shouldn't)
|
||||
*/
|
||||
public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration, boolean losePreviousTypes, boolean characterDefining, boolean loseAbilities) {
|
||||
public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration, boolean losePreviousTypes, boolean loseAbilities, boolean characterDefining) {
|
||||
super(duration, Outcome.BecomeCreature);
|
||||
this.characterDefining = characterDefining;
|
||||
this.token = token;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue