From e74a5e052ca301bc539ff68cb3b28f0de5d52a37 Mon Sep 17 00:00:00 2001 From: apathy Date: Fri, 11 Jul 2025 22:39:14 +0300 Subject: [PATCH 1/3] add Customizable Player Models --- .../CustomPlayerModels-Bukkit-0.6.22a.jar | 3 +++ src/plugins/CustomizablePlayerModels/cpm.json | 20 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 src/plugins/CustomPlayerModels-Bukkit-0.6.22a.jar create mode 100644 src/plugins/CustomizablePlayerModels/cpm.json diff --git a/src/plugins/CustomPlayerModels-Bukkit-0.6.22a.jar b/src/plugins/CustomPlayerModels-Bukkit-0.6.22a.jar new file mode 100644 index 0000000..c0a3477 --- /dev/null +++ b/src/plugins/CustomPlayerModels-Bukkit-0.6.22a.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4477c1c12df9b4f831a54768670b7c9c9119105240b040e4190ca8a8a5d15d9 +size 2856510 diff --git a/src/plugins/CustomizablePlayerModels/cpm.json b/src/plugins/CustomizablePlayerModels/cpm.json new file mode 100644 index 0000000..1921e45 --- /dev/null +++ b/src/plugins/CustomizablePlayerModels/cpm.json @@ -0,0 +1,20 @@ +{ + "player_scaling": { + "4da94efb-eef2-36ee-8a84-224ad811bfb0": {}, + "8490b151-4c5c-3c2f-a43f-5a1718ebce75": { + "flight": 1.0, + "motion": 1.0, + "scale": 1.0, + "stepHeight": 1.0 + } + }, + "player_scaling_settings": {}, + "scaling_settings": { + "motion": {}, + "flight_speed": {}, + "step_height": {}, + "reach": {}, + "entity": {} + }, + "skins": {} +} \ No newline at end of file -- 2.45.2 From bae99512a1451679fedf83665a57c7d321b02620 Mon Sep 17 00:00:00 2001 From: apathy Date: Fri, 11 Jul 2025 22:45:35 +0300 Subject: [PATCH 2/3] delete data --- src/plugins/CustomizablePlayerModels/cpm.json | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/plugins/CustomizablePlayerModels/cpm.json diff --git a/src/plugins/CustomizablePlayerModels/cpm.json b/src/plugins/CustomizablePlayerModels/cpm.json deleted file mode 100644 index 1921e45..0000000 --- a/src/plugins/CustomizablePlayerModels/cpm.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "player_scaling": { - "4da94efb-eef2-36ee-8a84-224ad811bfb0": {}, - "8490b151-4c5c-3c2f-a43f-5a1718ebce75": { - "flight": 1.0, - "motion": 1.0, - "scale": 1.0, - "stepHeight": 1.0 - } - }, - "player_scaling_settings": {}, - "scaling_settings": { - "motion": {}, - "flight_speed": {}, - "step_height": {}, - "reach": {}, - "entity": {} - }, - "skins": {} -} \ No newline at end of file -- 2.45.2 From 79664f7633229129355a212c453827d6553026be Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Mon, 14 Jul 2025 12:21:49 +0300 Subject: [PATCH 3/3] add CustomPlayerModels docker container symlinks --- .dockerignore | 2 ++ .gitignore | 2 ++ Dockerfile | 6 ++++++ 3 files changed, 10 insertions(+) diff --git a/.dockerignore b/.dockerignore index 5a359f3..6fb7851 100644 --- a/.dockerignore +++ b/.dockerignore @@ -24,3 +24,5 @@ src/plugins/luckperms/libs src/plugins/PlasmoVoice/voice_mutes.json src/plugins/SuperVanish/data.yml + +src/plugins/CustomizablePlayerModels diff --git a/.gitignore b/.gitignore index 0d5e9a0..b39893f 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,5 @@ src/plugins/LuckPerms/libs src/plugins/PlasmoVoice/voice_mutes.json src/plugins/SuperVanish/data.yml + +src/plugins/CustomizablePlayerModels diff --git a/Dockerfile b/Dockerfile index a1effeb..3714264 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,12 @@ RUN mkdir -p ${DATA_PATH}/SuperVanish && \ ln -sf ${DATA_PATH}/SuperVanish/data.yml \ ${CONFIG_PATH}/plugins/SuperVanish/data.yml +# Add symlinks to CusttomPlayerModels files +RUN mkdir -p ${DATA_PATH}/CustomizablePlayerModels && \ + ln -sf ${DATA_PATH}/CustomizablePlayerModels/ \ + ${CONFIG_PATH}/plugins/CustomizablePlayerModels + + VOLUME ${DATA_PATH} -- 2.45.2