File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
common/src/main/kotlin/com/lambda/module/modules/combat Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,9 @@ import com.lambda.http.request
2525import com.lambda.module.Module
2626import com.lambda.module.tag.ModuleTag
2727import com.lambda.threading.onShutdown
28+ import com.lambda.threading.runGameScheduled
2829import com.lambda.threading.runSafeConcurrent
30+ import com.lambda.threading.runSafeGameScheduled
2931import com.mojang.authlib.GameProfile
3032import net.minecraft.client.network.OtherClientPlayerEntity
3133import net.minecraft.client.network.PlayerListEntry
@@ -88,7 +90,9 @@ object FakePlayer : Module(
8890 id = - 2024 - 4 - 20
8991 }
9092
91- world.addEntity(fakePlayer)
93+ runSafeGameScheduled {
94+ world.addEntity(fakePlayer)
95+ }
9296 }
9397
9498 private fun deletePlayer () {
You can’t perform that action at this time.
0 commit comments