mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00:00
![Alexander Söderberg](/assets/img/avatar_default.png)
* Use generics instead of the raw class * Add Gradle wrapper verification * Fix biome setting in versions prior to 1.15 * Fixes #2654 * Document area getters in PlotAreaManager, and replace y-value with z in the area contains check. * Remove update notifications * Remove unused dependencies * Do not kick plot owners on "/p deny *" * Do not kick any added players on /p deny * * Allow redstone to be used in server plot with `redstone.disable-offline` enabled. Potentially fixes #2613 * Disallow swapping ,erged plots * Fix legacy converter. * Fix blockbucket pattern generation * Prevent pasting schematics onto merged plots. * Cancel claim event correctly * Revert "Cancel claim event correctly" This reverts commit 0f786155 Further investigation required * Fix plot swapping messing up owners. Fixes #2282 * Fix plot move * Prevent plot swapping form changing the database unless the swap was successful. * Update signs after swap. * Only send move success message if the move was successful. Co-authored-by: Matt <4009945+MattBDev@users.noreply.github.com> Co-authored-by: NotMyFault <mc.cache@web.de> Co-authored-by: Daniel <admin@hywse.eu> Co-authored-by: Hannes Greule <SirYwell@users.noreply.github.com>
28 lines
484 B
YAML
28 lines
484 B
YAML
name: Java CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- v4
|
|
- v5
|
|
- leagcy/1.8-1.12
|
|
pull_request:
|
|
branches:
|
|
- v4
|
|
- v5
|
|
- leagcy/1.8-1.12
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Gradle Wrapper Validation
|
|
uses: gradle/wrapper-validation-action@v1
|
|
- name: Test with Gradle
|
|
run: ./gradlew clean build
|