@@ -93,8 +93,8 @@
|
||||
return properties;
|
||||
}
|
||||
|
||||
- protected abstract T reload(Properties properties);
|
||||
+ protected abstract T reload(Properties properties, OptionSet optionset); // CraftBukkit
|
||||
- protected abstract T reload(IRegistryCustom iregistrycustom, Properties properties);
|
||||
+ protected abstract T reload(IRegistryCustom iregistrycustom, Properties properties, OptionSet optionset); // CraftBukkit
|
||||
|
||||
public class EditableProperty<V> implements Supplier<V> {
|
||||
|
||||
@@ -111,8 +111,8 @@
|
||||
Properties properties = PropertyManager.this.a();
|
||||
|
||||
properties.put(this.b, this.d.apply(v0));
|
||||
- return PropertyManager.this.reload(properties);
|
||||
+ return PropertyManager.this.reload(properties, PropertyManager.this.options); // CraftBukkit
|
||||
- return PropertyManager.this.reload(iregistrycustom, properties);
|
||||
+ return PropertyManager.this.reload(iregistrycustom, properties, PropertyManager.this.options); // CraftBukkit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user