mirror of
https://github.com/songoda/EpicHoppers.git
synced 2024-11-22 10:15:43 +01:00
Fixed typo
This commit is contained in:
parent
66e084ca65
commit
eb46531fdc
@ -10,14 +10,14 @@ public interface LevelManager {
|
||||
* "give" command.
|
||||
*
|
||||
* @param level The level of the hopper
|
||||
* @param costExperiance The cost in experience to upgrade the hopper
|
||||
* @param costExperience The cost in experience to upgrade the hopper
|
||||
* @param costEconomy The cost in economy to upgrade the hopper
|
||||
* @param range The range in which this hopper will need to be in order to sync with another hopper
|
||||
* @param amount The amount of items this hopper will transfer at a single time
|
||||
* @param suction The distance in which this hopper will suck items into it
|
||||
* @param blockBreak The tick frequency in which this hopper will break blocks placed directly above it.
|
||||
*/
|
||||
void addLevel(int level, int costExperiance, int costEconomy, int range, int amount, int suction, int blockBreak);
|
||||
void addLevel(int level, int costExperience, int costEconomy, int range, int amount, int suction, int blockBreak);
|
||||
|
||||
Level getLevel(int level);
|
||||
|
||||
|
@ -12,8 +12,8 @@ public class ELevelManager implements LevelManager {
|
||||
private final NavigableMap<Integer, ELevel> registeredLevels = new TreeMap<>();
|
||||
|
||||
@Override
|
||||
public void addLevel(int level, int costExperiance, int costEconomy, int range, int amount, int suction, int blockBreak) {
|
||||
registeredLevels.put(level, new ELevel(level, costExperiance, costEconomy, range, amount, suction, blockBreak));
|
||||
public void addLevel(int level, int costExperience, int costEconomy, int range, int amount, int suction, int blockBreak) {
|
||||
registeredLevels.put(level, new ELevel(level, costExperience, costEconomy, range, amount, suction, blockBreak));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user