diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html
index 968e3c0e8..4e88cc024 100644
--- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html
+++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html
@@ -22,6 +22,7 @@ abilities.
Lady of Imladris" with completely different text (per card text).
- "Orophin, Lorien Scount" has moved in to Lothlorien (added the keyword).
- "The Palantir of Orthanc, Defiler of Wizards" now requires to spot ISENGARD minion to play (per card text).
+- "Treachery Runs Deep" now correctly checks the twilight available before being able to play it.
11 Mar. 2013
- Second Edition is playable now.
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_244.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_244.java
index 45f3f40d3..ee713c9dd 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_244.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_244.java
@@ -32,7 +32,8 @@ public class Card20_244 extends AbstractResponseEvent {
@Override
public List getOptionalAfterActions(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
- if (TriggerConditions.forEachWounded(game, effectResult, CardType.COMPANION)) {
+ if (TriggerConditions.forEachWounded(game, effectResult, CardType.COMPANION)
+ && checkPlayRequirements(playerId, game, self, 0, 0, false, false)) {
PlayEventAction action = new PlayEventAction(self);
PhysicalCard woundedCompanion = ((WoundResult) effectResult).getWoundedCard();
action.setText("Wound "+ GameUtils.getFullName(woundedCompanion));