Florian CUNY
b8a0b15ed3
Added warning messages if 'allow-nether' or 'allow-end' are set to false
...
https://github.com/BentoBoxWorld/BentoBox/issues/741
2019-06-18 16:57:14 +02:00
Florian CUNY
f13fe4d225
Added a video to the "general.database.type" config option
2019-06-18 15:26:19 +02:00
Florian CUNY
dec28fe161
Added package-info in api/configuration package
2019-06-18 15:20:28 +02:00
Florian CUNY
0e4fdd307a
Added ConfigEntry#video()
2019-06-18 15:20:04 +02:00
Florian CUNY
3ac89497ff
Properly close file readers in JSONDatabaseHandler
...
Should fix https://github.com/BentoBoxWorld/BentoBox/issues/776
2019-06-18 14:51:16 +02:00
tastybento
15b602f331
Added CompositeCommand#call(...) ( #772 )
...
* Implements new call API for commands
https://github.com/BentoBoxWorld/BentoBox/issues/759
* pom.xml should not use tabs
* Improved javadoc
* refixed the since tag in javadoc
2019-06-18 14:33:03 +02:00
tastybento
c864ba7ab6
Merge branch 'develop' of https://github.com/BentoBoxWorld/BentoBox.git into develop
2019-06-16 09:14:06 -07:00
Florian CUNY
c5a9a1443e
Added developers to the pom.xml
2019-06-16 14:06:00 +02:00
Florian CUNY
496c4c9b5a
Version up 1.5.3
2019-06-16 11:30:41 +02:00
Florian CUNY
35a8aab145
Release 1.5.2
2019-06-16 11:24:27 +02:00
BONNe
12db414ea1
Fixed ender dragon issue in 1.14+ ( #769 )
...
* Fix ender dragon issue in 1.14+
Mojang changed spawn chunk loading again, so they are all time loaded again. That mean, previous hack, that puts a portal on chunk load will not work anymore, as chunks are loaded before the event even is registered.
I fixed it by moving from ChunkLoadEvent to PlayerChangeWorldEvent as it will kick always when player joins the end.
* improved javadoc
2019-06-16 10:43:26 +02:00
Florian CUNY
2927aca98c
Added "visited islands"-related default placeholders for gamemodes
...
https://github.com/BentoBoxWorld/BentoBox/issues/737
There are a lot of duplicate code here but I'm afraid it may require a more in-depth redesign of the placeholders than what we're allowed to do in a patch version.
Javadocs of the default placeholders have also been slightly improved.
2019-06-16 10:12:36 +02:00
Florian CUNY
cc46726d46
Deprecated GameModePlaceholder#ISLAND_SPAWNPOINT
...
The %island_spawnpoint% is identical to the %island_center% placeholder.
2019-06-16 09:20:11 +02:00
Florian CUNY
98cb301070
Improved GameModePlaceholderReplacer javadoc
2019-06-16 09:19:23 +02:00
tastybento
acb7c1fc76
Merge branch 'develop' of https://github.com/BentoBoxWorld/BentoBox.git
...
into develop
2019-06-15 22:10:25 -07:00
tastybento
f50e59eef1
Fixed right click not clearing blueprints in management panel
...
Fixed NPE if a bundle does not have an end or nether bp.
2019-06-15 22:09:17 -07:00
tastybento
3ae98741c6
Removed unused imports
2019-06-15 22:08:29 -07:00
tastybento
5793608e08
Removed unused imports
2019-06-15 22:07:27 -07:00
Florian CUNY
07be933a9d
Fixed some code smells
2019-06-15 22:56:57 +02:00
tastybento
c7cb7a4327
Updated README sonarcloud badges
2019-06-15 09:54:40 -07:00
tastybento
a0e35b240b
Added BlueprintsManagerTest and improved BlueprintsManager
2019-06-15 09:47:05 -07:00
Florian CUNY
6e734fc343
Fixed Island's BoundingBoxes being a bit too large
2019-06-15 13:56:32 +02:00
Florian CUNY
02ca693ade
Improved bentobox commands descriptions in en-US locale
2019-06-15 13:43:48 +02:00
tastybento
86f6043421
Adds error reporting on addon incompatibility.
2019-06-14 18:49:42 -07:00
BONNe
673436a5b7
Finally fixed NPEs in PanelListenerManager tests ( #765 )
...
Tests failing because 'getClickedInventory()' was not defined there
2019-06-14 14:57:32 +02:00
BONNe
492361663e
Fixed NPE in PanelListenerManager tests ( #764 )
...
* Fix NPE in PanelListenerTests
This will fix null-pointer.
One test will fail, as it is kinda bad as it conflicts with #761
* Re-ignored one of the test as it still fails
2019-06-14 14:03:08 +02:00
BONNe
d1e9188959
Added ability to explicitly define asynchronous PremadeEvent ( #763 )
...
* Add ability to define asynchronous event
* minor formatting
* Removed another line jump
2019-06-14 13:59:47 +02:00
Florian CUNY
3c1f033819
Added a period to "commands.bentobox.reload.warning" in en-US
2019-06-14 11:12:14 +02:00
Florian CUNY
7c6f6a991b
Ignored failing tests
2019-06-14 10:34:53 +02:00
Florian CUNY
bd64f94e13
Merge remote-tracking branch 'origin/develop' into develop
2019-06-14 10:23:06 +02:00
Florian CUNY
d064ed71ec
Fixed NPE when the WebManager fails to gather data from GitHub API
...
Fixes https://github.com/BentoBoxWorld/BentoBox/issues/760
2019-06-14 10:22:26 +02:00
BONNe
ebe2f5aa4c
Secured the handling of InventoryClickEvent for panels ( #761 )
...
* Fix Challenges GUI issue 132
Fixed https://github.com/BentoBoxWorld/Challenges/issues/132
This issue happens because AnvilGUIClick event was processed after BentoBox registers new Panel.
I add extra check in InventoryClickEvent that not only checks if user has opened panel, but also compares if event and panel has the same inventory, before processing it as BentoBox Panel.
* Removed the unneeded PlayerKickEvent
2019-06-14 10:03:54 +02:00
Florian CUNY
2e84860aa0
Added Island#getBoundingBox() and Island#getProtectionBoundingBox()
...
https://github.com/BentoBoxWorld/BentoBox/issues/758
2019-06-13 10:00:12 +02:00
Florian CUNY
0cdd774d0b
Added nullable annotations to Island#getOwner() and Island#getName()
2019-06-13 09:57:11 +02:00
Florian CUNY
8cb5234a0c
Added Island#getMaxX(), #getMaxZ(), #getMaxProtectedX(), #getMaxProtectedZ()
2019-06-13 09:56:24 +02:00
Florian CUNY
51738df54c
Improved Island#onIsland(Location) javadoc
2019-06-13 09:48:34 +02:00
Florian CUNY
ad3cb821f4
Fixed BentoBoxReloadCommandTest
2019-06-12 13:25:28 +02:00
Florian CUNY
3e6fe52f95
Fixed CompositeCommand not handling correctly null permission prefixes
...
Added nullability annotations
2019-06-12 13:25:10 +02:00
Florian CUNY
e7f90bbd21
Fixed issues with permissions for /bentobox commands
...
- Each /bentobox subcommand now has its own dedicated permission
- bentobox.admin is a permission node for most of them
- /bentobox about: bentobox.about
- /bentobox version: bentobox.version
- updated the plugin.yml with the new permissions
2019-06-12 10:40:16 +02:00
Florian CUNY
880185ad4b
Added "rl" alias for the AdminReloadCommand
2019-06-10 17:36:20 +02:00
Florian CUNY
35f8a80167
Improved the code for the RANK placeholder
2019-06-10 15:16:16 +02:00
ramirilyasov999
44038ddbda
Added ru-RU translation
...
It is however based on 1.4.0's locales, so it may need to be updated.
2019-06-10 13:24:15 +02:00
Florian CUNY
51327b10e2
Version up 1.5.2
2019-06-10 09:48:45 +02:00
Florian CUNY
69a477a678
Version 1.5.1
2019-06-10 09:40:43 +02:00
Florian CUNY
efbdcfc587
Simplified the selectBundle(...) method in IslandResetCommand
2019-06-10 09:18:30 +02:00
tastybento
54756e97e0
Fixes PLAINS biome in nether and end after island reset.
...
https://github.com/BentoBoxWorld/BentoBox/issues/745
2019-06-09 18:36:32 -07:00
tastybento
d5be5f81c2
Fixes and adds tests for IslandCreateCommand
...
Tests were failing from 824a744cd1
2019-06-09 17:18:17 -07:00
tastybento
db5bb8ed8b
Creating end/nether islands on first join to dimension
...
Substitutes for PR #713 because the code did not work.
https://github.com/BentoBoxWorld/BentoBox/pull/713
Pastes and teleports to preferred spawn location.
2019-06-09 16:20:08 -07:00
tastybento
ca8b453e4b
Merge branch 'develop' of https://github.com/BentoBoxWorld/BentoBox.git into develop
2019-06-09 15:04:20 -07:00
Florian CUNY
824a744cd1
Fixed the Island Creation Panel showing although there is 1 bundle available
...
Implements #744
2019-06-09 23:05:47 +02:00