File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
src/com/jedk1/jedcore/configuration Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 11package com .jedk1 .jedcore .configuration ;
22
33import org .bukkit .Color ;
4+ import org .bukkit .Location ;
45import org .bukkit .OfflinePlayer ;
56import org .bukkit .configuration .Configuration ;
67import org .bukkit .configuration .ConfigurationSection ;
@@ -598,6 +599,21 @@ public boolean isColor(String path) {
598599 return parent .isColor (path );
599600 }
600601
602+ @ Override
603+ public Location getLocation (String s ) {
604+ return parent .getLocation (s );
605+ }
606+
607+ @ Override
608+ public Location getLocation (String s , Location location ) {
609+ return parent .getLocation (s , location );
610+ }
611+
612+ @ Override
613+ public boolean isLocation (String s ) {
614+ return parent .isLocation (s );
615+ }
616+
601617 @ Override
602618 public ConfigurationSection getConfigurationSection (String path ) {
603619 String newPath = getPrefix () + path ;
You can’t perform that action at this time.
0 commit comments