Jake Potrebic

Results 384 comments of Jake Potrebic

I really don't like a lot of what's going on here. You have some failing item meta tests that have to be addressed, and I think you're going to encounter...

This is just an initial guess, but this is probably because the CommandMap is no longer used for executing commands, the brigadier dispatcher is. And they are only synced when...

That seems like such a niche usecase, that it can be done by those plugins themselves right? Why do any changes to the paper server have to happen for that?

AFAIK, the only place you can't use translatable (or components) is scoreboard entries, or game profile names, but you can do everything you want there with team prefixes/suffixes or armor...

I just don't know what the best thing to do is. We could just ignore invalid ones completely, or remove invalid ones.

Just to note, you have to drop an item that won’t combine with any other stack in the inventory, cause if it does, it’ll go there and not be deleted....

> Another case I noticed is that the item will also get deleted when closing the inventory with an item attached to the cursor, but I haven't had the time...

Yeah I guess I'll do that. not a great solution either way.

Is there a better way? There's no way to write short literals in java right? So you'd now have to do ```java furnace.setBurnTime((short) 40); ``` just to avoid it using...

> Even if the int variant wasn't there you need to either cast to a short or put the number into a short variable to use the method Oh I...