diff options
author | inglettronald <inglettronald@gmail.com> | 2023-07-18 12:27:13 -0500 |
---|---|---|
committer | inglettronald <inglettronald@gmail.com> | 2023-07-18 12:27:13 -0500 |
commit | 053db047a053cfa4b510d872802434a922275326 (patch) | |
tree | 799e113dcc22c85432ef355d5919ebb0f61a36f9 /src/main/kotlin/com/dulkirfabric/util | |
parent | 9cd4efc009d45dd671908e8cdc3477aaf14550e6 (diff) | |
download | DulkirMod-Fabric-053db047a053cfa4b510d872802434a922275326.tar.gz DulkirMod-Fabric-053db047a053cfa4b510d872802434a922275326.tar.bz2 DulkirMod-Fabric-053db047a053cfa4b510d872802434a922275326.zip |
More Entity/Animation fixes
Diffstat (limited to 'src/main/kotlin/com/dulkirfabric/util')
-rw-r--r-- | src/main/kotlin/com/dulkirfabric/util/GlowingEntityInterface.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/com/dulkirfabric/util/GlowingEntityInterface.kt b/src/main/kotlin/com/dulkirfabric/util/GlowingEntityInterface.kt index 5a76890..9b129fd 100644 --- a/src/main/kotlin/com/dulkirfabric/util/GlowingEntityInterface.kt +++ b/src/main/kotlin/com/dulkirfabric/util/GlowingEntityInterface.kt @@ -3,7 +3,7 @@ package com.dulkirfabric.util import java.awt.Color interface GlowingEntityInterface { - fun setDulkirEntityGlow(shouldGlow: Boolean, glowColor: Color, shouldESP: Boolean = false) + fun setDulkirEntityGlow(shouldGlow: Boolean = false, glowColor: Color, shouldESP: Boolean = false) fun shouldDulkirEntityGlow() : Boolean |