Skip to content

Commit 4c1b16e

Browse files
committed
forgot to commit in between features so now this commit has too many changes in it.
Changes: - Entity API (yaw, pitch, look_direction, equipment, tags) - Vector/Location arithmetic operators - Event field extraction (snake_case→camelCase) - Player.selected_slot - Freeze fix - @event.unregister - Menu re-open fix - ManaStore lifecycle - World utilities - @command cmd_ prefix - Dungeon WFC improvements - copyBridgePython gradle task - comprehensive stubs and docs update
1 parent 583563e commit 4c1b16e

File tree

124 files changed

+3868
-515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+3868
-515
lines changed

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22
"yaml.schemas": {
33
"https://www.schemastore.org/bukkit-plugin.json": "file:///home/omena0/Github/PyJavaBridge/src/main/resources/plugin.yml"
44
},
5-
"java.compile.nullAnalysis.mode": "automatic"
5+
"java.compile.nullAnalysis.mode": "automatic",
6+
"python-envs.defaultEnvManager": "ms-python.python:venv",
7+
"java.configuration.updateBuildConfiguration": "interactive"
68
}

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ tasks.register('copyReleaseJar', Copy) {
7979
}
8080
}
8181

82+
tasks.register('copyBridgePython', Copy) {
83+
from "${rootDir}/src/main/resources/python/bridge"
84+
into "${rootDir}/server/plugins/PyJavaBridge/scripts/bridge"
85+
}
86+
8287
tasks.named('build') {
83-
finalizedBy tasks.named('copyPluginJar'), tasks.named('copyReleaseJar')
88+
finalizedBy tasks.named('copyPluginJar'), tasks.named('copyReleaseJar'), tasks.named('copyBridgePython')
8489
}

changelog.md

Lines changed: 93 additions & 0 deletions

docs/site/ability.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/site/actionbardisplay.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/site/advancement.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/site/attribute.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/site/bank.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/site/block.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/site/blockdisplay.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)