Niklas Grenningloh

Results 5 comments of Niklas Grenningloh

Do you want to use IPs or UUIDs for the list?

How is the current status on implementing it? Will the feature be in the rewrite?

Is it possible to add an option to **optionally** add an identity card to identify the user? If there is an explicit popup to show the user that the ID...

For this the encrypted packets of minecraft (newer versions) must be decrypted, changed and then re-encrypted. This would be difficult to implement in infrared (many different packets etc.). I think...

I found my issue: I used: getScheduler().runAtEntityLater(player, (task) -> { player.updateInventory(); }, 20L); but it should be: getScheduler().runAtEntityLater(player, player::updateInventory, 20L);