Skip to content

Commit

Permalink
Update default-active-generators comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
BONNe committed Jul 5, 2020
1 parent 93201db commit f927c69
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.wesjd</groupId>
<artifactId>anvilgui</artifactId>
<version>1.2.1-SNAPSHOT</version>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>18.0.0</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void setDisabledGameModes(Set<String> disabledGameModes)

@ConfigComment("")
@ConfigComment("This allows to define how many generators can be activated at once per each island.")
@ConfigComment("0 or less will mean that only default generator can be used for island.")
@ConfigComment("0 or less will mean that there is no limitation.")
@ConfigComment("Can be changed with a permission `[gamemode].stone-generator.active-generators.[number]`.")
@ConfigEntry(path = "default-active-generators")
private int defaultActiveGeneratorCount = 3;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package world.bentobox.magiccobblestonegenerator.managers;


import com.sun.istack.internal.NotNull;
import com.sun.istack.internal.Nullable;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.*;
import java.util.stream.Collectors;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@



import com.sun.istack.internal.Nullable;
import org.jetbrains.annotations.Nullable;

import org.bukkit.World;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package world.bentobox.magiccobblestonegenerator.panels.player;


import com.sun.istack.internal.Nullable;
import org.jetbrains.annotations.Nullable;
import org.bukkit.Material;
import org.bukkit.World;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
package world.bentobox.magiccobblestonegenerator.utils;


import com.sun.istack.internal.NotNull;
import com.sun.istack.internal.Nullable;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.bukkit.Location;
import org.bukkit.metadata.MetadataValue;
import java.util.UUID;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use-physic: true
working-range: 0
#
# This allows to define how many generators can be activated at once per each island.
# 0 or less will mean that only default generator can be used for island.
# 0 or less will mean that there is no limitation.
# Can be changed with a permission `[gamemode].stone-generator.active-generators.[number]`.
default-active-generators: 3
#
Expand Down

0 comments on commit f927c69

Please sign in to comment.