fix spelling mistake

This commit is contained in:
Marco Neuhaus 2018-11-24 18:42:00 +01:00
parent b60c56f464
commit fc8b55dce7
6 changed files with 6 additions and 6 deletions

View File

@ -231,7 +231,7 @@ public class BukkitViaConfig extends Config implements ViaVersionConfig {
}
@Override
public boolean isRedueBlockStorageMemory() {
public boolean isReduceBlockStorageMemory() {
return getBoolean("reduce-blockstorage-memory", false);
}
}

View File

@ -284,7 +284,7 @@ public class BungeeViaConfig extends Config implements ViaVersionConfig {
}
@Override
public boolean isRedueBlockStorageMemory() {
public boolean isReduceBlockStorageMemory() {
return getBoolean("reduce-blockstorage-memory", false);
}
}

View File

@ -286,5 +286,5 @@ public interface ViaVersionConfig {
*
* @return True if enabled
*/
boolean isRedueBlockStorageMemory();
boolean isReduceBlockStorageMemory();
}

View File

@ -134,7 +134,7 @@ public class ConnectionData {
keyToId.put(key, id);
}
if (!Via.getConfig().isRedueBlockStorageMemory()) {
if (!Via.getConfig().isReduceBlockStorageMemory()) {
JsonObject mappingBlockConnections = MappingData.loadData("blockConnections.json");
for (Entry<String, JsonElement> entry : mappingBlockConnections.entrySet()) {
int id = keyToId.get(entry.getKey());

View File

@ -237,7 +237,7 @@ public class SpongeViaConfig extends Config implements ViaVersionConfig {
}
@Override
public boolean isRedueBlockStorageMemory() {
public boolean isReduceBlockStorageMemory() {
return getBoolean("reduce-blockstorage-memory", false);
}
}

View File

@ -289,7 +289,7 @@ public class VelocityViaConfig extends Config implements ViaVersionConfig {
}
@Override
public boolean isRedueBlockStorageMemory() {
public boolean isReduceBlockStorageMemory() {
return getBoolean("reduce-blockstorage-memory", false);
}
}