diff --git a/samples/asmodeus/asmodeus.py b/samples/asmodeus/asmodeus.py
index 3a104fd517f6d292b4093fc30a9eeb886fe03400..2f83db66f1e41d2b572149a2efde73c5c739226e 100755
--- a/samples/asmodeus/asmodeus.py
+++ b/samples/asmodeus/asmodeus.py
@@ -56,7 +56,7 @@ class Asmodeus:
 		self.board = []
 		self.units = []
 		if self.Setup():
-			while self.MakeMove():
+			while self.MoveCycle(): #derp derp derp
 				pass
 		
 
@@ -87,7 +87,7 @@ class Asmodeus:
 	def MakeMove(self):
 		#TODO: Over-ride this function in base classes with more complex move behaviour
 
-		#sys.stderr.write("Asmodeus MakeRandomMove here...\n")
+		#sys.stderr.write("Asmodeus MakeMove here...\n")
 		#self.debugPrintBoard()
 		while True:
 			if len(self.units) <= 0: