Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--game.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/game.py b/game.py
index 16782ba..b31d08e 100644
--- a/game.py
+++ b/game.py
@@ -104,17 +104,17 @@ class Box(Gtk.VBox):
#card_opponent 1
card1 = Gtk.Image()
- card1.set_from_file('icons/cards/' + self.cards[3] + '.svg')
+ card1.set_from_file('icons/cards/back.svg')
self.opponent_box.pack_start(card1, True, True, 0)
#card_opponent 2
card2 = Gtk.Image()
- card2.set_from_file('icons/cards/' + self.cards[4] + '.svg')
+ card2.set_from_file('icons/cards/back.svg')
self.opponent_box.pack_start(card2, True, True, 0)
#card_opponent 3
card3 = Gtk.Image()
- card3.set_from_file('icons/cards/' + self.cards[5] + '.svg')
+ card3.set_from_file('icons/cards/back.svg')
self.opponent_box.pack_start(card3, True, True, 0)