-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Version 1.6.1 * Version 1.6.1 * Added Blue Orchids spawning in the Swamp biome * Version 1.7.0 1.18.1 update * German translation (#86) * Translate de.yml via GitLocalize * Translate de.yml via GitLocalize Co-authored-by: mt-gitlocalize <[email protected]> Co-authored-by: xXjojojXx <[email protected]> * Translate hu.yml via GitLocalize (#87) Co-authored-by: driverdakid <[email protected]> * Translate ja.yml via GitLocalize (#88) Co-authored-by: tastybento <[email protected]> * Translate zh-CN.yml via GitLocalize (#89) Co-authored-by: tastybento <[email protected]> * Code refactoring around BoundingBox * Fix test. * Remove saving of greenhouses on exit. #85 * Add Pladdon Class (#90) * Add Pladdon Class Add Greenhouses Pladdon class. * Add Spigot Annotations API * Fix test. Avoid ambiguity. * Add natural spawn protection listener. Fixes #84 * Update gitignore for Eclipse * Remove some code smells. Co-authored-by: tastybento <[email protected]> Co-authored-by: Florian CUNY <[email protected]> Co-authored-by: gitlocalize-app[bot] <55277160+gitlocalize-app[bot]@users.noreply.github.com> Co-authored-by: mt-gitlocalize <[email protected]> Co-authored-by: xXjojojXx <[email protected]> Co-authored-by: driverdakid <[email protected]>
- Loading branch information
1 parent
4aec983
commit a96d4d4
Showing
17 changed files
with
541 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/target/ | ||
/.classpath | ||
/.project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
src/main/java/world/bentobox/greenhouses/GreenhousesPladdon.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package world.bentobox.greenhouses; | ||
|
||
|
||
import org.bukkit.plugin.java.annotation.dependency.Dependency; | ||
import org.bukkit.plugin.java.annotation.plugin.ApiVersion; | ||
import org.bukkit.plugin.java.annotation.plugin.Plugin; | ||
|
||
import world.bentobox.bentobox.api.addons.Addon; | ||
import world.bentobox.bentobox.api.addons.Pladdon; | ||
|
||
|
||
/** | ||
* @author tastybento | ||
*/ | ||
@Plugin(name = "Pladdon", version = "1.0") | ||
@ApiVersion(ApiVersion.Target.v1_18) | ||
@Dependency(value = "BentoBox") | ||
public class GreenhousesPladdon extends Pladdon | ||
{ | ||
@Override | ||
public Addon getAddon() | ||
{ | ||
return new Greenhouses(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.