From ecd221713958f2490b089917012f702f16e313ea Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Mon, 14 Feb 2011 01:18:41 +0000 Subject: [PATCH] reordered these varibles pspsdk doesnt like it when things are not int'ed in order. --- projects/mtg/include/AllAbilities.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/include/AllAbilities.h b/projects/mtg/include/AllAbilities.h index b0784efc4..953cbc68a 100644 --- a/projects/mtg/include/AllAbilities.h +++ b/projects/mtg/include/AllAbilities.h @@ -1285,9 +1285,9 @@ public: class ACastRestriction: public AbilityTP { public: + TargetChooser * restrictionsScope; //a minimalist TargetChooser object describing the cards impacted by the restriction (for example: lands) WParsedInt *value; //"maxPerTurn" value MaxPerTurnRestriction * existingRestriction; // a pointer to the restriction that is being modified or that has been created (for restriction deletion purpose) - TargetChooser * restrictionsScope; //a minimalist TargetChooser object describing the cards impacted by the restriction (for example: lands) bool modifyExisting; //if set to true, means we want to modify an existing restriction, otherwise we create a new one int zoneId; // identifier of the zone id impacted by the restriction Player * targetPlayer; // Reference to the player impacted by the restriction (for restriction deletion purpose)