New Feature | You can set a path Prefix with setPathPrefix!
This avoids you from typing
get("spawn.x")
get("spawn.y")
get("spawn.z")
instead, you can just type:
setPathPrefix("spawn")
This will save you lots of time!
Of course, prefix is only for the current instance and not for the whole file
(This means if you have multiple instances of a file its only set to one - this avoids you from checking on every other instance for the pathPrefix)
You can just un set it with setPathPrefix(null)
You can update by setting your dependency to:
Code (Text):
<dependency>
<groupId>de.leonhard</groupId>
<artifactId>LightningStorage</artifactId>
<version>1.2</version>
<scope>compile</scope>
</dependency>