Skip to content

Commit a178966

Browse files
authored
Merge branch 'lambda-client:master' into Speed
2 parents fe3a4a0 + aa5c6f9 commit a178966

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/main/kotlin/com/lambda/client/command/commands/SearchCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ object SearchCommand : ClientCommand(
2828
if (warningBlocks.contains(blockName)) {
2929
MessageSendHelper.sendWarningMessage("Your world contains lots of ${formatValue(blockName)}, " +
3030
"it might cause extreme lag to add it. " +
31-
"If you are sure you want to add it run ${formatValue("$prefixName add force $blockName")}"
31+
"If you are sure you want to add it run ${formatValue("$prefixName add $blockName force")}"
3232
)
3333
} else {
3434
addBlock(blockName)

src/main/kotlin/com/lambda/client/event/ForgeEventProcessor.kt

+5-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import com.lambda.client.util.text.MessageDetection
1414
import net.minecraftforge.client.event.*
1515
import net.minecraftforge.event.entity.living.LivingEntityUseItemEvent
1616
import net.minecraftforge.event.entity.player.PlayerInteractEvent
17-
import net.minecraftforge.event.world.ChunkEvent
17+
import net.minecraftforge.event.world.WorldEvent
1818
import net.minecraftforge.fml.common.eventhandler.EventPriority
1919
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
2020
import net.minecraftforge.fml.common.gameevent.InputEvent
@@ -98,8 +98,11 @@ internal object ForgeEventProcessor {
9898
LambdaEventBus.post(event)
9999
}
100100

101+
/**
102+
* Includes events of subclasses like ChunkEvent, ChunkDataEvent, BlockEvent, NoteBlockEvent, GetCollisionBoxesEvent
103+
*/
101104
@SubscribeEvent
102-
fun onChunkLoaded(event: ChunkEvent.Unload) {
105+
fun onWorldEvent(event: WorldEvent) {
103106
LambdaEventBus.post(event)
104107
}
105108

0 commit comments

Comments
 (0)