From f66e8443704ad96e9d38c06bbea7db7b9898a06b Mon Sep 17 00:00:00 2001
From: Jeff Wadsworth <jeff@delmarus.com>
Date: Wed, 24 Nov 2021 12:00:10 -0600
Subject: [PATCH] - fixed text on Master of the Hunt

---
 Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java b/Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java
index 6a9bf75a11..39b54182e4 100644
--- a/Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java
+++ b/Mage.Sets/src/mage/cards/m/MasterOfTheHunt.java
@@ -1,4 +1,3 @@
-
 package mage.cards.m;
 
 import java.util.UUID;
@@ -17,24 +16,24 @@ import mage.game.permanent.token.WolvesOfTheHuntToken;
  * @author L_J
  */
 public final class MasterOfTheHunt extends CardImpl {
-
+    
     public MasterOfTheHunt(UUID ownerId, CardSetInfo setInfo) {
-        super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{G}{G}");
+        super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{G}");
         this.subtype.add(SubType.HUMAN);
         this.power = new MageInt(2);
         this.toughness = new MageInt(2);
 
         // Create a 1/1 green Wolf creature token named Wolves of the Hunt. It has “bands with other creatures named Wolves of the Hunt.”
-        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new WolvesOfTheHuntToken()), new ManaCostsImpl("{2}{G}{G}")));
+        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new WolvesOfTheHuntToken()).setText("Create a 1/1 green Wolf creature token named Wolves of the Hunt. It has “bands with other creatures named Wolves of the Hunt.”"), new ManaCostsImpl("{2}{G}{G}")));
     }
-
+    
     private MasterOfTheHunt(final MasterOfTheHunt card) {
         super(card);
     }
-
+    
     @Override
     public MasterOfTheHunt copy() {
         return new MasterOfTheHunt(this);
     }
-
+    
 }