ViaRewind-Legacy-Support icon indicating copy to clipboard operation
ViaRewind-Legacy-Support copied to clipboard

1.16.3 Server, 1.8.9 Client - Player refresh causes all chunks to unload and never seem to load again.

Open nathanfranke opened this issue 5 years ago • 1 comments

Original Post: https://github.com/ViaVersion/ViaRewind/issues/209

Demonstration: https://i.imgur.com/n6mGrvH.mp4

Plugin:

package spigottest;

import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerChatEvent;
import org.bukkit.plugin.java.JavaPlugin;

@SuppressWarnings("deprecation")
public class Test extends JavaPlugin implements Listener {
	
	@Override
	public void onEnable() {
		getServer().getPluginManager().registerEvents(this, this);
	}
	
	@EventHandler
	public void onPlayerChat(PlayerChatEvent event) {
		event.getPlayer().setPlayerProfile(event.getPlayer().getPlayerProfile());
	}
	
}

Via...

  • Version 3.2.0
  • Backwards 3.2.0
  • Rewind 1.5.2

Server is Paper 1.16.3 Build 204

nathanfranke avatar Oct 04 '20 23:10 nathanfranke

does this also happen with a 1.9 Client?

florianreuth avatar Apr 03 '24 11:04 florianreuth