ForcePack 1.2.3 fixes a Minecraft client bug where updating only the hash would cause issues with the client. The fix simply appends your hash as an achor to the URL. ItemsAdder support has also been added.
It also adds the ability to use the old resource pack screen - the custom message will still display. The benefit of this is your kick message will function when the client clicks on "disconnect".
Config changes:
Spigot:
Code (YAML):
# Appends the hash to your URL to fix this bug.
enable-mc-164316-fix
: true
# Should ForcePack load on the first tick after the server has started?
# Ensures we load after any plugin you may be hosting a resource pack on
# So that you can use its hosting feature
load-last
: false
# Should we wait for items adder to load resource pack?
await-items-adder-host
: true
# Should we use the 1.17+ force resource pack screen, or the old one?
# You can still define a custom message that will show even if this is false for 1.17+ clients
# Note that with this true, the custom disconnect message will not work because the client forcefully kicks itself
use-new-force-pack-screen
: true
Velocity:
Code (Text):
# Appends the hash to your URL to fix this bug.
enable-mc-164316-fix = true
# Should we use the 1.17+ force resource pack screen, or the old one?
# You can still define a custom message that will show even if this is false for 1.17+ clients
# Note that with this true, the custom disconnect message will not work because the client forcefully kicks itself
use-new-force-pack-screen = true
Commits (new -> old):