diff options
author | inglettronald <inglettronald@gmail.com> | 2023-01-11 03:33:40 -0600 |
---|---|---|
committer | inglettronald <inglettronald@gmail.com> | 2023-01-11 03:33:40 -0600 |
commit | e5ed23881bd861975f39250f69ff747015e1d4ab (patch) | |
tree | e60805305353803889a4ce978508a11ec7f3d26b /src/main/kotlin/dulkirmod | |
parent | 65dcbf8dd3220464d6c30b6167ca73ba34109203 (diff) | |
download | DulkirMod-e5ed23881bd861975f39250f69ff747015e1d4ab.tar.gz DulkirMod-e5ed23881bd861975f39250f69ff747015e1d4ab.tar.bz2 DulkirMod-e5ed23881bd861975f39250f69ff747015e1d4ab.zip |
cleanup
Diffstat (limited to 'src/main/kotlin/dulkirmod')
-rw-r--r-- | src/main/kotlin/dulkirmod/features/ScalableTooltips.kt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main/kotlin/dulkirmod/features/ScalableTooltips.kt b/src/main/kotlin/dulkirmod/features/ScalableTooltips.kt index 95e1941..6b0a66f 100644 --- a/src/main/kotlin/dulkirmod/features/ScalableTooltips.kt +++ b/src/main/kotlin/dulkirmod/features/ScalableTooltips.kt @@ -8,7 +8,6 @@ import net.minecraft.client.renderer.RenderHelper import net.minecraftforge.fml.client.config.GuiUtils import org.lwjgl.input.Keyboard import org.lwjgl.input.Mouse -import org.spongepowered.asm.mixin.injection.callback.CallbackInfo object ScalableTooltips { var scrollY: Int = 0 @@ -22,9 +21,7 @@ object ScalableTooltips { mouseY: Int, screenWidth: Int, screenHeight: Int, - maxTextWidth: Int, font: FontRenderer, - ci: CallbackInfo ): Boolean { if(!Config.scaledTooltips) return false if(textLines.isEmpty()) return true |