├── .github └── workflows │ ├── pr-build.yml │ └── push-build.yml ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── neonpaper ├── patches ├── api │ └── 0001-pom-changes.patch ├── server │ ├── 0001-rebrand.patch │ ├── 0002-update-dependencies.patch │ ├── 0003-NeonPaper-config-and-command.patch │ ├── 0004-Papaya-map-icon-limit.patch │ ├── 0005-pathfinder-selection-delay-configurable.patch │ ├── 0006-FlamePaper-Fix-head-rotation-packet-spam.patch │ ├── 0007-FlamePaper-Dont-check-occluding-hoppers.patch │ ├── 0008-FlamePaper-Hopper-item-lookup-optimizations.patch │ ├── 0009-FlamePaper-Check-channel-before-reading.patch │ ├── 0010-Lazinity-Configurable-NBT-read-limiter.patch │ ├── 0011-KigPaper-Kick-after-receiving-invalid-creative-actio.patch │ ├── 0012-TacoSpigot-Fix-incorrect-getNoDamageTicks.patch │ ├── 0013-Papaya-Backport-bedrock-breaking-patch-from-paper.patch │ ├── 0014-Paper-1.18.2-Disable-component-selector-resolving-in.patch │ ├── 0015-Concrete-Lag-compensate-eating.patch │ ├── 0016-Reaper-fix-MC-103516.patch │ ├── 0017-Reaper-fix-MC-120780.patch │ ├── 0018-Reaper-fix-MC-128547.patch │ ├── 0019-Reaper-misc-reduce-offline-mode-warn.patch │ ├── 0020-perf-remove-snooper.patch │ ├── 0021-Reaper-perf-reduce-entity-tracker-updates.patch │ ├── 0022-Do-not-load-chunks-for-light-checks.patch │ ├── 0023-Do-not-load-chunks-for-light-checks.patch │ ├── 0024-Fix-insane-nether-portal-lag.patch │ ├── 0025-Fix-insane-nether-portal-lag.patch │ ├── 0026-Avoid-double-I-O-operation-on.patch │ ├── 0027-Don-t-load-chunks-for-physics.patch │ ├── 0028-Check-for-lava-only-once-per-tick.patch │ ├── 0029-Fix-Teleport-Invisibility.patch │ ├── 0030-Performance-improvement.patch │ ├── 0031-Prevent-fishing-hooks-from-portal.patch │ ├── 0032-Further-improve-server-tick-loop.patch │ ├── 0033-Prevent-creature-spawning-in-unloaded-chunks.patch │ ├── 0034-Fix-chunk-unloading.patch │ ├── 0035-Always-delete-UserCache-on-error.patch │ ├── 0036-Cache-block-break-animation-packet.patch │ ├── 0037-Async-Spawn-Chunks.patch │ ├── 0038-Skip-updating-entity-tracker-without-Players.patch │ ├── 0039-Use-jchambers-FAST-UUID-methods.patch │ ├── 0040-Use-fast-util-in-PlayerChunkMap.patch │ ├── 0041-Thread-Local-IntCache-Fixed.patch │ ├── 0042-Prevent-billion-laughs-attacks.patch │ ├── 0043-Dont-load-chunks-for-chests.patch │ ├── 0044-Disable-startup-chunk-loading.patch │ ├── 0045-Adaptative-chunk-GC.patch │ ├── 0046-Lag-Compensated-Ticking.patch │ ├── 0047-Optimize-Furnace.patch │ ├── 0048-Don-t-allow-digging-into-unloaded-chunks.patch │ ├── 0049-Reset-players-airTicks-on-respawn.patch │ ├── 0050-Use-valid-item-for-enchantment-checks-on-block.patch │ ├── 0051-Use-Vanilla-Minecart-Speeds.patch │ ├── 0052-Prevent-Enderman-from-loading-chunks.patch │ ├── 0053-Better-handling-of-some-ItemMeta.patch │ ├── 0054-Handle-bad-chunks-more-gracefully.patch │ ├── 0055-Maps-shouldn-t-load-chunk.patch │ ├── 0056-Fix-MC-161754.patch │ ├── 0057-Save-Json-list-asynchronously.patch │ ├── 0058-offset-item-frame-ticking.patch │ ├── 0059-Swaps-the-predicate-order-of-collision.patch │ ├── 0060-Don-t-trigger-Lootable-Refresh-for-non-player-intera.patch │ ├── 0061-Throttle-Successive-Failed-MobSpawner-Attempts.patch │ ├── 0062-Prevent-Village-Doors-from-Loading-Chunks.patch │ ├── 0063-PlayerChunkMap-Security.patch │ ├── 0064-Fix-stuck-in-sneak-when-changing-worlds-MC-10657.patch │ ├── 0065-Fix-MC-158900.patch │ ├── 0066-remove-paper-server-impl-metrics.patch │ ├── 0067-add-caffeine-dependency.patch │ └── 0068-Fix-cow-dupe.patch └── wip │ ├── 0016-Tuinity-Util-patch.patch │ └── 0017-wip-Tuinity-backport-packet-limiter.patch ├── pom.xml └── scripts ├── apply.sh ├── generatesources.sh ├── importmcdev.sh ├── init.sh ├── paperclip.sh ├── push.sh ├── rebuildpatches.sh ├── upstream.sh └── upstreamCommit.sh /.github/workflows/pr-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/.github/workflows/pr-build.yml -------------------------------------------------------------------------------- /.github/workflows/push-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/.github/workflows/push-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/README.md -------------------------------------------------------------------------------- /neonpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/neonpaper -------------------------------------------------------------------------------- /patches/api/0001-pom-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/api/0001-pom-changes.patch -------------------------------------------------------------------------------- /patches/server/0001-rebrand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0001-rebrand.patch -------------------------------------------------------------------------------- /patches/server/0002-update-dependencies.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0002-update-dependencies.patch -------------------------------------------------------------------------------- /patches/server/0003-NeonPaper-config-and-command.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0003-NeonPaper-config-and-command.patch -------------------------------------------------------------------------------- /patches/server/0004-Papaya-map-icon-limit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0004-Papaya-map-icon-limit.patch -------------------------------------------------------------------------------- /patches/server/0005-pathfinder-selection-delay-configurable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0005-pathfinder-selection-delay-configurable.patch -------------------------------------------------------------------------------- /patches/server/0006-FlamePaper-Fix-head-rotation-packet-spam.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0006-FlamePaper-Fix-head-rotation-packet-spam.patch -------------------------------------------------------------------------------- /patches/server/0007-FlamePaper-Dont-check-occluding-hoppers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0007-FlamePaper-Dont-check-occluding-hoppers.patch -------------------------------------------------------------------------------- /patches/server/0008-FlamePaper-Hopper-item-lookup-optimizations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0008-FlamePaper-Hopper-item-lookup-optimizations.patch -------------------------------------------------------------------------------- /patches/server/0009-FlamePaper-Check-channel-before-reading.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0009-FlamePaper-Check-channel-before-reading.patch -------------------------------------------------------------------------------- /patches/server/0010-Lazinity-Configurable-NBT-read-limiter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0010-Lazinity-Configurable-NBT-read-limiter.patch -------------------------------------------------------------------------------- /patches/server/0011-KigPaper-Kick-after-receiving-invalid-creative-actio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0011-KigPaper-Kick-after-receiving-invalid-creative-actio.patch -------------------------------------------------------------------------------- /patches/server/0012-TacoSpigot-Fix-incorrect-getNoDamageTicks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0012-TacoSpigot-Fix-incorrect-getNoDamageTicks.patch -------------------------------------------------------------------------------- /patches/server/0013-Papaya-Backport-bedrock-breaking-patch-from-paper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0013-Papaya-Backport-bedrock-breaking-patch-from-paper.patch -------------------------------------------------------------------------------- /patches/server/0014-Paper-1.18.2-Disable-component-selector-resolving-in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0014-Paper-1.18.2-Disable-component-selector-resolving-in.patch -------------------------------------------------------------------------------- /patches/server/0015-Concrete-Lag-compensate-eating.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0015-Concrete-Lag-compensate-eating.patch -------------------------------------------------------------------------------- /patches/server/0016-Reaper-fix-MC-103516.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0016-Reaper-fix-MC-103516.patch -------------------------------------------------------------------------------- /patches/server/0017-Reaper-fix-MC-120780.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0017-Reaper-fix-MC-120780.patch -------------------------------------------------------------------------------- /patches/server/0018-Reaper-fix-MC-128547.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0018-Reaper-fix-MC-128547.patch -------------------------------------------------------------------------------- /patches/server/0019-Reaper-misc-reduce-offline-mode-warn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0019-Reaper-misc-reduce-offline-mode-warn.patch -------------------------------------------------------------------------------- /patches/server/0020-perf-remove-snooper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0020-perf-remove-snooper.patch -------------------------------------------------------------------------------- /patches/server/0021-Reaper-perf-reduce-entity-tracker-updates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0021-Reaper-perf-reduce-entity-tracker-updates.patch -------------------------------------------------------------------------------- /patches/server/0022-Do-not-load-chunks-for-light-checks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0022-Do-not-load-chunks-for-light-checks.patch -------------------------------------------------------------------------------- /patches/server/0023-Do-not-load-chunks-for-light-checks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0023-Do-not-load-chunks-for-light-checks.patch -------------------------------------------------------------------------------- /patches/server/0024-Fix-insane-nether-portal-lag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0024-Fix-insane-nether-portal-lag.patch -------------------------------------------------------------------------------- /patches/server/0025-Fix-insane-nether-portal-lag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0025-Fix-insane-nether-portal-lag.patch -------------------------------------------------------------------------------- /patches/server/0026-Avoid-double-I-O-operation-on.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0026-Avoid-double-I-O-operation-on.patch -------------------------------------------------------------------------------- /patches/server/0027-Don-t-load-chunks-for-physics.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0027-Don-t-load-chunks-for-physics.patch -------------------------------------------------------------------------------- /patches/server/0028-Check-for-lava-only-once-per-tick.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0028-Check-for-lava-only-once-per-tick.patch -------------------------------------------------------------------------------- /patches/server/0029-Fix-Teleport-Invisibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0029-Fix-Teleport-Invisibility.patch -------------------------------------------------------------------------------- /patches/server/0030-Performance-improvement.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0030-Performance-improvement.patch -------------------------------------------------------------------------------- /patches/server/0031-Prevent-fishing-hooks-from-portal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0031-Prevent-fishing-hooks-from-portal.patch -------------------------------------------------------------------------------- /patches/server/0032-Further-improve-server-tick-loop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0032-Further-improve-server-tick-loop.patch -------------------------------------------------------------------------------- /patches/server/0033-Prevent-creature-spawning-in-unloaded-chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0033-Prevent-creature-spawning-in-unloaded-chunks.patch -------------------------------------------------------------------------------- /patches/server/0034-Fix-chunk-unloading.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0034-Fix-chunk-unloading.patch -------------------------------------------------------------------------------- /patches/server/0035-Always-delete-UserCache-on-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0035-Always-delete-UserCache-on-error.patch -------------------------------------------------------------------------------- /patches/server/0036-Cache-block-break-animation-packet.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0036-Cache-block-break-animation-packet.patch -------------------------------------------------------------------------------- /patches/server/0037-Async-Spawn-Chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0037-Async-Spawn-Chunks.patch -------------------------------------------------------------------------------- /patches/server/0038-Skip-updating-entity-tracker-without-Players.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0038-Skip-updating-entity-tracker-without-Players.patch -------------------------------------------------------------------------------- /patches/server/0039-Use-jchambers-FAST-UUID-methods.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0039-Use-jchambers-FAST-UUID-methods.patch -------------------------------------------------------------------------------- /patches/server/0040-Use-fast-util-in-PlayerChunkMap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0040-Use-fast-util-in-PlayerChunkMap.patch -------------------------------------------------------------------------------- /patches/server/0041-Thread-Local-IntCache-Fixed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0041-Thread-Local-IntCache-Fixed.patch -------------------------------------------------------------------------------- /patches/server/0042-Prevent-billion-laughs-attacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0042-Prevent-billion-laughs-attacks.patch -------------------------------------------------------------------------------- /patches/server/0043-Dont-load-chunks-for-chests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0043-Dont-load-chunks-for-chests.patch -------------------------------------------------------------------------------- /patches/server/0044-Disable-startup-chunk-loading.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0044-Disable-startup-chunk-loading.patch -------------------------------------------------------------------------------- /patches/server/0045-Adaptative-chunk-GC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0045-Adaptative-chunk-GC.patch -------------------------------------------------------------------------------- /patches/server/0046-Lag-Compensated-Ticking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0046-Lag-Compensated-Ticking.patch -------------------------------------------------------------------------------- /patches/server/0047-Optimize-Furnace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0047-Optimize-Furnace.patch -------------------------------------------------------------------------------- /patches/server/0048-Don-t-allow-digging-into-unloaded-chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0048-Don-t-allow-digging-into-unloaded-chunks.patch -------------------------------------------------------------------------------- /patches/server/0049-Reset-players-airTicks-on-respawn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0049-Reset-players-airTicks-on-respawn.patch -------------------------------------------------------------------------------- /patches/server/0050-Use-valid-item-for-enchantment-checks-on-block.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0050-Use-valid-item-for-enchantment-checks-on-block.patch -------------------------------------------------------------------------------- /patches/server/0051-Use-Vanilla-Minecart-Speeds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0051-Use-Vanilla-Minecart-Speeds.patch -------------------------------------------------------------------------------- /patches/server/0052-Prevent-Enderman-from-loading-chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0052-Prevent-Enderman-from-loading-chunks.patch -------------------------------------------------------------------------------- /patches/server/0053-Better-handling-of-some-ItemMeta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0053-Better-handling-of-some-ItemMeta.patch -------------------------------------------------------------------------------- /patches/server/0054-Handle-bad-chunks-more-gracefully.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0054-Handle-bad-chunks-more-gracefully.patch -------------------------------------------------------------------------------- /patches/server/0055-Maps-shouldn-t-load-chunk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0055-Maps-shouldn-t-load-chunk.patch -------------------------------------------------------------------------------- /patches/server/0056-Fix-MC-161754.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0056-Fix-MC-161754.patch -------------------------------------------------------------------------------- /patches/server/0057-Save-Json-list-asynchronously.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0057-Save-Json-list-asynchronously.patch -------------------------------------------------------------------------------- /patches/server/0058-offset-item-frame-ticking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0058-offset-item-frame-ticking.patch -------------------------------------------------------------------------------- /patches/server/0059-Swaps-the-predicate-order-of-collision.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0059-Swaps-the-predicate-order-of-collision.patch -------------------------------------------------------------------------------- /patches/server/0060-Don-t-trigger-Lootable-Refresh-for-non-player-intera.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0060-Don-t-trigger-Lootable-Refresh-for-non-player-intera.patch -------------------------------------------------------------------------------- /patches/server/0061-Throttle-Successive-Failed-MobSpawner-Attempts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0061-Throttle-Successive-Failed-MobSpawner-Attempts.patch -------------------------------------------------------------------------------- /patches/server/0062-Prevent-Village-Doors-from-Loading-Chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0062-Prevent-Village-Doors-from-Loading-Chunks.patch -------------------------------------------------------------------------------- /patches/server/0063-PlayerChunkMap-Security.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0063-PlayerChunkMap-Security.patch -------------------------------------------------------------------------------- /patches/server/0064-Fix-stuck-in-sneak-when-changing-worlds-MC-10657.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0064-Fix-stuck-in-sneak-when-changing-worlds-MC-10657.patch -------------------------------------------------------------------------------- /patches/server/0065-Fix-MC-158900.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0065-Fix-MC-158900.patch -------------------------------------------------------------------------------- /patches/server/0066-remove-paper-server-impl-metrics.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0066-remove-paper-server-impl-metrics.patch -------------------------------------------------------------------------------- /patches/server/0067-add-caffeine-dependency.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0067-add-caffeine-dependency.patch -------------------------------------------------------------------------------- /patches/server/0068-Fix-cow-dupe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/server/0068-Fix-cow-dupe.patch -------------------------------------------------------------------------------- /patches/wip/0016-Tuinity-Util-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/wip/0016-Tuinity-Util-patch.patch -------------------------------------------------------------------------------- /patches/wip/0017-wip-Tuinity-backport-packet-limiter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/patches/wip/0017-wip-Tuinity-backport-packet-limiter.patch -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/apply.sh -------------------------------------------------------------------------------- /scripts/generatesources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/generatesources.sh -------------------------------------------------------------------------------- /scripts/importmcdev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/importmcdev.sh -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/init.sh -------------------------------------------------------------------------------- /scripts/paperclip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/paperclip.sh -------------------------------------------------------------------------------- /scripts/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/push.sh -------------------------------------------------------------------------------- /scripts/rebuildpatches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/rebuildpatches.sh -------------------------------------------------------------------------------- /scripts/upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/upstream.sh -------------------------------------------------------------------------------- /scripts/upstreamCommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hungnguyennaz/NeonPaper/HEAD/scripts/upstreamCommit.sh --------------------------------------------------------------------------------