├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── license ├── AGPL-3.0.txt ├── GPL-3.0.txt ├── LGPL-3.0.txt └── MIT.txt ├── logo.png ├── patches ├── api │ ├── 0001-Suki-configuration.patch │ ├── 0002-Hide-plugins.patch │ ├── 0003-Custom-enchantability.patch │ └── 0004-Per-player-load-see-and-track-view-distance.patch └── server │ ├── 0001-Suki-project-setup.patch │ ├── 0002-Dev-import-deobfuscation-fixes.patch │ ├── 0003-Suki-branding-changes.patch │ ├── 0004-Suki-configuration.patch │ ├── 0005-Set-Suki-permissions-root.patch │ ├── 0006-Non-sitting-pet-inactivity-immunity.patch │ ├── 0007-Log-login-protocol.patch │ ├── 0008-Allow-invalid-client-view-distance.patch │ ├── 0009-Do-not-relocate-corrupted-chunks.patch │ ├── 0010-Disable-keep-alive-kicks.patch │ ├── 0011-Hide-plugins.patch │ ├── 0012-Place-items-directly-in-head-slot.patch │ ├── 0013-Never-despawn-entities-due-to-distance.patch │ ├── 0014-All-nether-bricks-count-as-fortress-for-mob-spawning.patch │ ├── 0015-Survival-debug-stick.patch │ ├── 0016-Break-barriers-and-lights-in-survival.patch │ ├── 0017-Zombie-reinforcements-on-all-difficulties.patch │ ├── 0018-All-raids-are-hard.patch │ ├── 0019-Cave-spider-poison-on-easy-difficulty.patch │ ├── 0020-Wither-skull-effect-on-easy-difficulty.patch │ ├── 0021-Disable-lightning-fire.patch │ ├── 0022-Configurable-minimum-health-after-starving.patch │ ├── 0023-Spiders-have-effects-on-all-difficulties.patch │ ├── 0024-Configurable-villager-reputation-changes.patch │ ├── 0025-Players-share-villager-gossips.patch │ ├── 0026-Custom-enchantability.patch │ ├── 0027-Bone-meal-regrows-bark.patch │ ├── 0028-Chunk-position-utilities.patch │ ├── 0029-Per-player-load-see-and-track-view-distance.patch │ └── 0030-Network-constrained-chunk-sending.patch └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/gradlew.bat -------------------------------------------------------------------------------- /license/AGPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/license/AGPL-3.0.txt -------------------------------------------------------------------------------- /license/GPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/license/GPL-3.0.txt -------------------------------------------------------------------------------- /license/LGPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/license/LGPL-3.0.txt -------------------------------------------------------------------------------- /license/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/license/MIT.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/logo.png -------------------------------------------------------------------------------- /patches/api/0001-Suki-configuration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/api/0001-Suki-configuration.patch -------------------------------------------------------------------------------- /patches/api/0002-Hide-plugins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/api/0002-Hide-plugins.patch -------------------------------------------------------------------------------- /patches/api/0003-Custom-enchantability.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/api/0003-Custom-enchantability.patch -------------------------------------------------------------------------------- /patches/api/0004-Per-player-load-see-and-track-view-distance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/api/0004-Per-player-load-see-and-track-view-distance.patch -------------------------------------------------------------------------------- /patches/server/0001-Suki-project-setup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0001-Suki-project-setup.patch -------------------------------------------------------------------------------- /patches/server/0002-Dev-import-deobfuscation-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0002-Dev-import-deobfuscation-fixes.patch -------------------------------------------------------------------------------- /patches/server/0003-Suki-branding-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0003-Suki-branding-changes.patch -------------------------------------------------------------------------------- /patches/server/0004-Suki-configuration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0004-Suki-configuration.patch -------------------------------------------------------------------------------- /patches/server/0005-Set-Suki-permissions-root.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0005-Set-Suki-permissions-root.patch -------------------------------------------------------------------------------- /patches/server/0006-Non-sitting-pet-inactivity-immunity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0006-Non-sitting-pet-inactivity-immunity.patch -------------------------------------------------------------------------------- /patches/server/0007-Log-login-protocol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0007-Log-login-protocol.patch -------------------------------------------------------------------------------- /patches/server/0008-Allow-invalid-client-view-distance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0008-Allow-invalid-client-view-distance.patch -------------------------------------------------------------------------------- /patches/server/0009-Do-not-relocate-corrupted-chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0009-Do-not-relocate-corrupted-chunks.patch -------------------------------------------------------------------------------- /patches/server/0010-Disable-keep-alive-kicks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0010-Disable-keep-alive-kicks.patch -------------------------------------------------------------------------------- /patches/server/0011-Hide-plugins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0011-Hide-plugins.patch -------------------------------------------------------------------------------- /patches/server/0012-Place-items-directly-in-head-slot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0012-Place-items-directly-in-head-slot.patch -------------------------------------------------------------------------------- /patches/server/0013-Never-despawn-entities-due-to-distance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0013-Never-despawn-entities-due-to-distance.patch -------------------------------------------------------------------------------- /patches/server/0014-All-nether-bricks-count-as-fortress-for-mob-spawning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0014-All-nether-bricks-count-as-fortress-for-mob-spawning.patch -------------------------------------------------------------------------------- /patches/server/0015-Survival-debug-stick.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0015-Survival-debug-stick.patch -------------------------------------------------------------------------------- /patches/server/0016-Break-barriers-and-lights-in-survival.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0016-Break-barriers-and-lights-in-survival.patch -------------------------------------------------------------------------------- /patches/server/0017-Zombie-reinforcements-on-all-difficulties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0017-Zombie-reinforcements-on-all-difficulties.patch -------------------------------------------------------------------------------- /patches/server/0018-All-raids-are-hard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0018-All-raids-are-hard.patch -------------------------------------------------------------------------------- /patches/server/0019-Cave-spider-poison-on-easy-difficulty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0019-Cave-spider-poison-on-easy-difficulty.patch -------------------------------------------------------------------------------- /patches/server/0020-Wither-skull-effect-on-easy-difficulty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0020-Wither-skull-effect-on-easy-difficulty.patch -------------------------------------------------------------------------------- /patches/server/0021-Disable-lightning-fire.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0021-Disable-lightning-fire.patch -------------------------------------------------------------------------------- /patches/server/0022-Configurable-minimum-health-after-starving.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0022-Configurable-minimum-health-after-starving.patch -------------------------------------------------------------------------------- /patches/server/0023-Spiders-have-effects-on-all-difficulties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0023-Spiders-have-effects-on-all-difficulties.patch -------------------------------------------------------------------------------- /patches/server/0024-Configurable-villager-reputation-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0024-Configurable-villager-reputation-changes.patch -------------------------------------------------------------------------------- /patches/server/0025-Players-share-villager-gossips.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0025-Players-share-villager-gossips.patch -------------------------------------------------------------------------------- /patches/server/0026-Custom-enchantability.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0026-Custom-enchantability.patch -------------------------------------------------------------------------------- /patches/server/0027-Bone-meal-regrows-bark.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0027-Bone-meal-regrows-bark.patch -------------------------------------------------------------------------------- /patches/server/0028-Chunk-position-utilities.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0028-Chunk-position-utilities.patch -------------------------------------------------------------------------------- /patches/server/0029-Per-player-load-see-and-track-view-distance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0029-Per-player-load-see-and-track-view-distance.patch -------------------------------------------------------------------------------- /patches/server/0030-Network-constrained-chunk-sending.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/patches/server/0030-Network-constrained-chunk-sending.patch -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuCraft/Suki/HEAD/settings.gradle.kts --------------------------------------------------------------------------------