Moved player data and plugin updater (#5) from the chat plugin #6

Merged
NorbiPeti merged 18 commits from Norbi into master 2016-08-30 22:29:18 +00:00
2 changed files with 13 additions and 1 deletions
Showing only changes of commit d53e6814a0 - Show all commits

View file

@ -9,6 +9,18 @@ import org.bukkit.Bukkit;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player;
/**
* <p>
* The class for holding data common to all TBMC plugins
* </p>
* <p>
* Listen to the load and save events from this package to load and save
* plugin-specific data
* </p>
*
* @author Norbi
*
*/
public class TBMCPlayer {
public String PlayerName;

View file

@ -16,7 +16,7 @@ public class TBMCPlayerSaveEvent extends Event {
this.player = player;
}
public YamlConfiguration GetYaml() {
public YamlConfiguration GetPlayerConfig() {
return yaml;
}