1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

getStorage -> getRawStorage

This commit is contained in:
Daniel Walsh 2021-01-26 07:44:04 +00:00 committed by GitHub
parent fd40737682
commit d0e0aa3c65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -363,12 +363,12 @@ public class BlockStorage {
}
@Nonnull
public Map<Location, Config> getStorage() {
public Map<Location, Config> getRawStorage() {
return this.storage;
}
@Nullable
public static Map<Location, Config> getStorage(@Nonnull World world) {
public static Map<Location, Config> getRawStorage(@Nonnull World world) {
Validate.notNull(world, "World cannot be null!");
BlockStorage storage = getStorage(world);