Skip to content

Commit

Permalink
Merge pull request Sefiraat#207 from balugaq/master
Browse files Browse the repository at this point in the history
pusher feedback
  • Loading branch information
balugaq authored Feb 6, 2025
2 parents 9e93afb + d1f54ca commit 93773b0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,25 @@
</execution>
</executions>
</plugin>
<!-- Plugin compiler + lombok configuration -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
<defaultGoal>clean package</defaultGoal>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ private void tryPushItem(@Nonnull BlockMenu blockMenu) {
if (definition.getNode().getRoot().isDisplayParticles()) {
showParticle(blockMenu.getLocation(), direction);
}
} else {
sendFeedback(blockMenu.getLocation(), FeedbackType.NO_ITEM_FOUND);
}
break;
}
Expand Down

0 comments on commit 93773b0

Please sign in to comment.