Merge branch '1.20.4' into 1.20.4-dev
This commit is contained in:
commit
abae66a366
39
.github/workflows/backport-prs.yml
vendored
Normal file
39
.github/workflows/backport-prs.yml
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
name: Backport merged pull request
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types: [closed]
|
||||||
|
issue_comment:
|
||||||
|
types: [created]
|
||||||
|
permissions:
|
||||||
|
contents: write # so it can comment
|
||||||
|
pull-requests: write # so it can create pull requests
|
||||||
|
jobs:
|
||||||
|
backport:
|
||||||
|
name: Backport pull request
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
# Only run when pull request is merged
|
||||||
|
# or when a comment starting with `/backport` is created by someone other than the
|
||||||
|
# https://github.com/backport-action bot user (user id: 97796249). Note that if you use your
|
||||||
|
# own PAT as `github_token`, that you should replace this id with yours.
|
||||||
|
if: >
|
||||||
|
(
|
||||||
|
github.event_name == 'pull_request_target' &&
|
||||||
|
github.event.pull_request.merged
|
||||||
|
) || (
|
||||||
|
github.event_name == 'issue_comment' &&
|
||||||
|
github.event.issue.pull_request &&
|
||||||
|
github.event.comment.user.id != 97796249 &&
|
||||||
|
startsWith(github.event.comment.body, '/backport')
|
||||||
|
)
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Create backport pull requests
|
||||||
|
uses: korthout/backport-action@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.TOKEN }}
|
||||||
|
pull_description: |
|
||||||
|
Backport of #${pull_number} to `${target_branch}`.
|
||||||
|
|
||||||
|
### Description
|
||||||
|
${pull_description}
|
||||||
|
|
@ -461,7 +461,7 @@ public class VanillaSync {
|
||||||
PlayerSync.LOGGER.info("Storing data for player " + player_uuid + " (init=" + init + ")");
|
PlayerSync.LOGGER.info("Storing data for player " + player_uuid + " (init=" + init + ")");
|
||||||
|
|
||||||
// Basic Attributes
|
// Basic Attributes
|
||||||
int XP = player.totalExperience;
|
int XP = getTotalExperience(player);
|
||||||
int score = player.getScore();
|
int score = player.getScore();
|
||||||
int food_level = player.getFoodData().getFoodLevel();
|
int food_level = player.getFoodData().getFoodLevel();
|
||||||
int health = (int) player.getHealth();
|
int health = (int) player.getHealth();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user