mirror of
https://github.com/seppukudevelopment/seppuku
synced 2025-03-04 03:37:33 +00:00
ReachModule: Bug fixes
This commit is contained in:
parent
532d3e48c2
commit
0497a9e9f2
@ -60,12 +60,11 @@ public final class ReachModule extends Module {
|
||||
if (this.blocks.getValue()) {
|
||||
this.currentBlockTrace = mc.player.rayTrace(this.distance.getValue(), event.getPartialTicks());
|
||||
|
||||
if (!this.highlight.getValue())
|
||||
return;
|
||||
|
||||
if (this.blockHighlightModule != null && this.currentBlockTrace != null) {
|
||||
if (this.blockHighlightModule.isEnabled()) {
|
||||
this.blockHighlightModule.drawHighlight(this.currentBlockTrace, mc);
|
||||
if (this.highlight.getValue()) {
|
||||
if (this.blockHighlightModule != null && this.currentBlockTrace != null) {
|
||||
if (this.blockHighlightModule.isEnabled()) {
|
||||
this.blockHighlightModule.drawHighlight(this.currentBlockTrace, mc);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user