()
| 940 | } |
| 941 | |
| 942 | public synchronized long getTimeExploding() |
| 943 | { |
| 944 | long time = System.currentTimeMillis()-timeStartedExploding; |
| 945 | |
| 946 | if(time > Constants.NEXT_TURN_DELAY) |
| 947 | { |
| 948 | if(exploding==true && nextTurnSent==false) |
| 949 | { |
| 950 | nextTurn(); |
| 951 | nextTurnSent = true; |
| 952 | } |
| 953 | } |
| 954 | |
| 955 | return time; |
| 956 | } |
| 957 | |
| 958 | public void updateDrawingStuff() |
| 959 | { |
no test coverage detected