Advertisement
Cool_boy21

Untitled

Aug 1st, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.23 KB | None | 0 0
  1. private void start() {
  2.         new BukkitRunnable() {
  3.             @Override
  4.             public void run() {
  5.                 if (!getZombies().isEmpty()) {
  6.                     for (LawnTile tile : tiles) {
  7.                         if (tile.isPlantHere()) {
  8.                             Plant plant = tile.getPlant();
  9.                             if (plant.getType().getDelay() != 0) {
  10.                                 if(plant.canShoot()) {
  11.                                     new BukkitRunnable() {
  12.                                         @Override
  13.                                         public void run() {
  14.                                             plant.shoot();
  15.                                             plant.resetDelay();
  16.                                         }
  17.                                     }.runTaskLater(PlantsVsZombies.getInstance(), 1);    
  18.                                 } else {
  19.                                     plant.addDelay(20);
  20.                                 }
  21.                             }
  22.                         }
  23.                     }
  24.                 }
  25.                 if(lawn == null) this.cancel();
  26.             }
  27.         }.runTaskTimerAsynchronously(PlantsVsZombies.getInstance(), 0, 20);
  28.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement