-
Notifications
You must be signed in to change notification settings - Fork 49
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style fixes
|
||
@Mixin(ItemStack.class) | ||
public class MixinItemStack { | ||
@Inject(method = "getTooltip", at = @At("RETURN"), locals = LocalCapture.PRINT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this can be removed?
@@ -20,7 +20,8 @@ | |||
"client": [ | |||
"MixinClientWorld", | |||
"MixinClientPlayerEntity", | |||
"MixinOtherClientPlayerEntity" | |||
"MixinOtherClientPlayerEntity", | |||
"MixinItemStack" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alphabetical order please
private final List<Text> toolTip; | ||
|
||
/** | ||
* This event is fired in {@link ItemStack#getTooltip(PlayerEntity, TooltipContext)}, which in turn is called from it's respective GUIContainer. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MCP name?
Checkstyle needs fixed |
CI seems to have failed due to a timeout when fetching from fabric's maven. Built locally, seems to be fine. |
You can manually trigger a re-run on the checks if this happens. ;) |
Completes a part of #84.