Wrong class

This commit is contained in:
filoghost 2014-12-20 15:52:57 +01:00
parent d1e2e96eaa
commit 92ee66bcbb
2 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,7 @@ public class NamedHologram extends CraftHologram {
public NamedHologram(Location source, String name) {
super(source);
this.name = name;
setAllowPlaceholders(true);
}
public String getName() {

View File

@ -16,7 +16,6 @@ public class PluginHologram extends CraftHologram {
super(source);
Validator.notNull(plugin, "plugin");
this.plugin = plugin;
setAllowPlaceholders(true);
}
public Plugin getOwner() {