WorldGuard Build #2198

Be aware that this branch (dev/1.19) is not the main branch (version/7.0.x)!

Branches other than the main one may be experimental. In addition, you should be using stable releases rather than these test builds.

Go to main branch View stable downloads
ProjectWorldGuard
StatusSUCCESS
Branchdev/1.19
Number#2198-9988f9b
Date2 years ago
Changes
IDSummaryCommitterDate
9988f9bcTidy up Materials.java, added missing effect type, removed todo for paper only joo2002 years ago
976973cbAdd Sculk Growth Flag and options to disable sculk growths joo2002 years ago
27337494Plugin Version to 1.19, cleanup from Materials, added 1.19 Materials joo2002 years ago
045e6c58Bumped versions: Minecraft to 1.19 and JDK 17 joo2002 years ago
0fddd2a5Fixed Typo in CommandException joo2002 years ago
85dd012bImprovement and Cleanup Domain view for /region info * Don't suggest the uuids to the command line, copy them to the clipboard instead * Tidy up the hover events and added hints to copy uuids joo2002 years ago
dc23af79Skip lookups on claim. Claim hasn't allowed user-input for ages, so no need to resolve anything. wizjany2 years ago
b6989413Append OnlineMode server information to ServerReport (#1891) joo2002 years ago
271b32aaDefault chest-protection.disable-off-check to true. Fixes #1890. wizjany2 years ago
938f0c3bHandle all the amethyst growth. Fixes #1889. wizjany2 years ago
216b0611Fix class source validator on spigot. wizjany2 years ago
27dca2b5Bump to snapshot. wizjany2 years ago
79a3b70dRelease 7.0.7. wizjany2 years ago
cf694251Don't cancel potion splashes with no targets.wizjany2 years ago
e2fe770eDisregard that, definitely need to duplicate. wizjany2 years ago
7e06088cSwitch to WE's ClassSourceValidator. Since it's (being) fixed there and no need to duplicate any more. wizjany2 years ago
f9d1c2d4Fix some errors in config loading. Technically removing a nonexistant property should be fixed in WE's yaml utils but eh. wizjany2 years ago
f883899cAdd deprecation warnings. Also remove the nodes from config if unused. wizjany2 years ago
de386fb4Provisional changelog for 7.0.7. wizjany2 years ago
660f9ffaUse deny-message for nether portal protection. Closes #1882. wizjany2 years ago
e05d4237Protect modification of candles and cake as building. Closes #1880. wizjany2 years ago
dca05151Optimize Region List and Region Teleport commands (#1868) * Optimized command usage for /rg list and /rg teleport: * added a flag to the teleport command to teleport the actor to the center of the region * added a flag to the list command to filter the regions for special ids * added a flag to the list command to get regions intersecting your selection * Fixed wrong pagination in RegionListerjoo2002 years ago
4abf971cAdd red sand to sand physics. This option is still at the mercy of bukkit api and might still not work ¯\_(ツ)_/¯ wizjany2 years ago
875a6fc8Add space in an error message. wizjany2 years ago
3cb4abdbUpdated amount of modules, Windows command prompt and outdated hints joo2002 years ago
4caf0afbAdd COMPILING.md and set Java Version to 16 joo2002 years ago
054a7341Update Java-Version in README.md to Java 17joo2002 years ago
b59da599Allows claimed regions to inherit from a template region (#1864) * Allows claimed regions to inherit from a template region * Replace template-when-claiming with set-parent-on-claim * Make the set-parent-on-claim option check securecristobal lopez2 years ago
46251f5fDon't check bypass for offline players. This is someone else's problem now (╯°□°)╯︵ ┻━┻ wizjany2 years ago
98bef4e0Remove extra import.wizjany2 years ago
f1c8649fImprove Checks for LightningStrikes (fixes #1845) joo2002 years ago
aad698afUpdate Paper and Spigot to 1.17.1 joo2002 years ago
ad7ecbaeExclude paper-api from squirrelid dependency (Compilefix for removed maven mirrors) joo2002 years ago
81750e19Add /rg migrateheights. (#1857) Closes #1856.wizjany2 years ago
703146bcUpdate guava to match MC 1.18 guava. wizjany2 years ago
2541483eFixed invalid label joo2002 years ago
0a601dbcImproved Bug Report and Feature Request Template joo2002 years ago
f55802c1Make cause known if origin can be used (#1838) stonar962 years ago
a0922cb4Add rock-growth flag. Handles amethyst and dripstone. Closes #1855. wizjany2 years ago
fb9705e4Update gradle. Getting ready for java 17. wizjany2 years ago
9b665136Fix Blacklist log entry not by player results in NPE (#1837) joo2003 years ago
efac79fdBump to 7.0.7-SNAPSHOT. wizjany3 years ago
1cff55f3Release 7.0.6. wizjany3 years ago
f4fb78c7Changelog for 7.0.6. wizjany3 years ago
56086b08Protect light from everything. Thanks Mojang. wizjany3 years ago
51fa25ddProtect light from light. Closes #1828. wizjany3 years ago
5b0fdb68Include GLOW_ITEM_FRAME in item-frame-rotation flag. Closes #1832. wizjany3 years ago
cb69ab73Fix perms NPE stonar963 years ago
5a6b6eb8Use QueryOption.SORT for region commands (#1817) stonar963 years ago
75774dbbFix redefinition of parent regions (#1814) stonar963 years ago
fe0fd17dCover additional case for blacklist on-equip. wizjany3 years ago
5e702f80Add inheritance for all flags (#1787) stonar963 years ago
0165175aAdditionally block other explosion if the defender is a block like entity to be consitent with "block" explosion protections (#1812) wyatt childers3 years ago
821c3e68Convert listeners to use AbstractListener and add shortcuts to get config. (#1808) Closes #1780.wizjany3 years ago
46442682Fix member inheritance for non-player associables (#1804) * Add options to query region sets unsorted and without parents * Fix member inheritance for non-player associables * Add member inheritance for non-player associables * Rename Option to QueryOption, remove functional definitions, bit of cleanup. Co-authored-by: wizjany <wizjany@gmail.com>stonar963 years ago
c81f5892Add jsr305 back for annotations. Blame those pesky WorldEdit devs breaking our builds :^) wizjany3 years ago
88854592Fix handlers order when registering one with after. I am not sure exactly if this is the source of the problem, but when i tried registering my handlers using ExitFlag.FACTORY as "after" like how the javadocs said it, it seemed that my handler was running before the ExitFlag handler which means mine will run even if ExitFlag returns false. I used null as after and it worked then. Maybe i understand the "after" incorrectly but in my mind my customHandler should run after the "after" not the other way around if that makes sense. Let me know if I didn't undertstand it correctly. Sorry for my english!loaidev3 years ago
8efc2e65Revert "Add member inheritance for non-player associables" This reverts commit b1cd1303d1d194fef7d1fc6e2811931ca08f4e38. wizjany3 years ago
b1cd1303Add member inheritance for non-player associables stonar963 years ago
c98f9edaCheck all effects for lingering potion clouds. Fixes #1797. wizjany3 years ago
682942b9Added NPE error message and javadoc hint for WorldGuard.getPlatform joo2003 years ago
7e817c33Protect signs against usage of (glowing) ink sac joo2003 years ago
5302bcb1Changelog for 7.0.6 beta 1. wizjany3 years ago
bcac63dcFix regions in negative heights (#1792) stonar963 years ago
37906c0fAdded use-dripleaf flag, Handle Deepslate Redstone Ore correctly joo2003 years ago
6879f10dFix crop growth config option. wizjany3 years ago
7155ef58Protect cave vines and glow berries correctly joo2003 years ago
e2f775c9Fixed wrong dependencies, removed not needed repository joo2003 years ago
c5dad747Compare items for /stack with ItemStack.isSimilar joo2003 years ago
4dfb9beaSwitch back dependency from Spigot to Paper joo2003 years ago
7436d506Fixed incorrectly shaded squirrelid joo2003 years ago
621c1289Bump squirrelid to 0.3.0, Deprecated PaperProfileServer (replaced by squirrelid) joo2003 years ago
093e282erelocate bstats like worldedit joo2003 years ago
2958c252Shade correctly bstats joo2003 years ago
d21ee986Re-add shade config, fix some other gradle black magic. wizjany3 years ago
dd90fa21Cover item dispense behaviors. Depends on spigot throwing events. wizjany3 years ago
34ed6175Bump api version to 1.17 joo2003 years ago
0818b3c2Update to Java 16, Gradle 7.0.2 and Bstats 2.1.0 joo2003 years ago
04541ed5Updated build environment, switched to Jupiter Unit Tests joo2003 years ago
f17f1fc8bump travis-ci to jdk11 joo2003 years ago
9defab65Fix protections for copper and rooted dirt joo2003 years ago
a225d1b2Added 1.17 materials joo2003 years ago
bcab33c1Updated dependencies and gradle joo2003 years ago
3cb83465Update dependencies to 1.17 joo2003 years ago
32d16a7eBump to snapshot. wizjany3 years ago
3827266eRelease 7.0.5. wizjany3 years ago
c3dbfdd6Changelog for 7.0.5. wizjany3 years ago
f19ebab0Handle spigot's entity mount event (#1755) * Add handler for spigot's EntityMountEvent. Closes #1677. * checkstyle.wizjany3 years ago
f8f95a44Fix Iron Doors (#1781) Co-authored-by: wizjany <wizjany@gmail.com>stonar963 years ago
0a74d02fAdd nonplayer-protection-domains flag (#1763) stonar963 years ago
46a662e1Fix Dispenser Shulker Box bug and cleanup (#1776) stonar963 years ago
149d1f84Remove unused RegionGroup.MEMBERS from the teleport flag (#1769) stonar963 years ago
c4e76af5Fix Cause#isKnown() (#1768) * Fix Cause#isKnown() * Grammar Co-authored-by: wizjany <wizjany@gmail.com>stonar963 years ago
c1c26360Remove unnecessary FlagValueCalculator#getPriority(ProtectedRegion) callsstonar963 years ago
65c894cfFix doc comment of FlagValueCalculator#getMembership(RegionAssociable) stonar963 years ago
7dcec2b3Small performance improvement for `PlayerDomain#contains()` (#1765) * Improve performance by putting UUID checks first. * Added wizjany's suggestion Co-authored-by: wizjany <wizjany@gmail.com>thebusybiscuit3 years ago
09ce3b63Update Java version in CONTRIBUTING.md (#1764) stonar963 years ago