Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-04 23:30:24 +01:00
fix spelling mistake
Dieser Commit ist enthalten in:
Ursprung
b60c56f464
Commit
fc8b55dce7
@ -231,7 +231,7 @@ public class BukkitViaConfig extends Config implements ViaVersionConfig {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isRedueBlockStorageMemory() {
|
||||
public boolean isReduceBlockStorageMemory() {
|
||||
return getBoolean("reduce-blockstorage-memory", false);
|
||||
}
|
||||
}
|
||||
|
@ -284,7 +284,7 @@ public class BungeeViaConfig extends Config implements ViaVersionConfig {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isRedueBlockStorageMemory() {
|
||||
public boolean isReduceBlockStorageMemory() {
|
||||
return getBoolean("reduce-blockstorage-memory", false);
|
||||
}
|
||||
}
|
||||
|
@ -286,5 +286,5 @@ public interface ViaVersionConfig {
|
||||
*
|
||||
* @return True if enabled
|
||||
*/
|
||||
boolean isRedueBlockStorageMemory();
|
||||
boolean isReduceBlockStorageMemory();
|
||||
}
|
||||
|
@ -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());
|
||||
|
@ -237,7 +237,7 @@ public class SpongeViaConfig extends Config implements ViaVersionConfig {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isRedueBlockStorageMemory() {
|
||||
public boolean isReduceBlockStorageMemory() {
|
||||
return getBoolean("reduce-blockstorage-memory", false);
|
||||
}
|
||||
}
|
||||
|
@ -289,7 +289,7 @@ public class VelocityViaConfig extends Config implements ViaVersionConfig {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isRedueBlockStorageMemory() {
|
||||
public boolean isReduceBlockStorageMemory() {
|
||||
return getBoolean("reduce-blockstorage-memory", false);
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren