fixed package protection for DiscoSheep
This commit is contained in:
		| @@ -1,18 +1,18 @@ | ||||
| package gibstick.bukkit.DiscoSheep; | ||||
| package gibstick.bukkit.discosheep; | ||||
|  | ||||
| import java.util.ArrayList; | ||||
| import java.lang.Math; | ||||
| import org.bukkit.plugin.java.JavaPlugin; | ||||
| import org.bukkit.entity.Sheep; | ||||
| import org.bukkit.Location; | ||||
| import org.bukkit.entity.EntityType; | ||||
| import org.bukkit.World; | ||||
| import org.bukkit.entity.Player; | ||||
| import org.bukkit.plugin.Plugin; | ||||
|  | ||||
| public final class DiscoSheep extends JavaPlugin { | ||||
|  | ||||
|     private ArrayList<Sheep> sheepArray = new ArrayList<>(); | ||||
| 	private DiscoUpdater updater = new DiscoUpdater(); | ||||
|     private DiscoUpdater updater = new DiscoUpdater(this); | ||||
|  | ||||
|     @Override | ||||
|     public void onEnable() { | ||||
| @@ -65,33 +65,32 @@ public final class DiscoSheep extends JavaPlugin { | ||||
|         } | ||||
|     } | ||||
|  | ||||
| 	public void playSounds(){ | ||||
| 		// TODO: generate list of players to send sounds to | ||||
| 	} | ||||
|     public void playSounds() { | ||||
|         // TODO: generate list of players to send sounds to | ||||
|     } | ||||
|  | ||||
| 	public void playSounds(Player player){ | ||||
| 		//TODO: Add sound playing here | ||||
| 	} | ||||
|     public void playSounds(Player player) { | ||||
|         //TODO: Add sound playing here | ||||
|     } | ||||
|  | ||||
| 	//	Called after discosheep is stopped | ||||
| 	public void cleanUp(){ | ||||
| 		removeAllSheep(); | ||||
| 	} | ||||
|     //	Called after discosheep is stopped | ||||
|     void cleanUp() { | ||||
|         removeAllSheep(); | ||||
|     } | ||||
|  | ||||
| 	void scheduleUpdate(){ | ||||
| 		updater.runTaskLater(updater,frequency); | ||||
| 	} | ||||
|     void scheduleUpdate() { | ||||
|         updater.runTaskLater((Plugin) updater, updater.frequency); | ||||
|     } | ||||
|  | ||||
| 	public void startDisco(int frequency, int duration){ | ||||
| 		updater.start(frequency, duration); | ||||
| 	} | ||||
|     void startDisco(int frequency, int duration) { | ||||
|         updater.start(frequency, duration); | ||||
|     } | ||||
|  | ||||
| 	public void startDisco(){ | ||||
| 		this.startDisco(); | ||||
| 	} | ||||
| 	 | ||||
| 	public void stopDisco(){ | ||||
| 		updater.stop(); | ||||
| 	} | ||||
|     void startDisco() { | ||||
|         this.startDisco(); | ||||
|     } | ||||
|  | ||||
|     void stopDisco() { | ||||
|         updater.stop(); | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Charlie Wang
					Charlie Wang