Don't destroy the castle if the troll doesn't reach it
[troll.git] / src / main / java / com / codingame / game / View.java
index b8d42c4..21489ff 100644 (file)
@@ -165,11 +165,13 @@ class View {
             graphicEntityModule.commitEntityState(0, message);
         }
 
             graphicEntityModule.commitEntityState(0, message);
         }
 
-        void destroy() {
+        void markLoser() {
             graphicEntityModule.commitEntityState(0.5, avatar);
             int dir = random.nextInt(2) == 1 ? 1 : -1;
             avatar.setRotation(dir * 170 * Math.PI / 180, Curve.ELASTIC);
             graphicEntityModule.commitEntityState(0.5, avatar);
             int dir = random.nextInt(2) == 1 ? 1 : -1;
             avatar.setRotation(dir * 170 * Math.PI / 180, Curve.ELASTIC);
+        }
 
 
+        void destroy() {
             graphicEntityModule.commitEntityState(0.5, castle);
             castle.setX(castle.getX(), Curve.ELASTIC);
             castle.setScaleY(-0.2, Curve.EASE_IN);
             graphicEntityModule.commitEntityState(0.5, castle);
             castle.setX(castle.getX(), Curve.ELASTIC);
             castle.setScaleY(-0.2, Curve.EASE_IN);