Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/modrinth-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
game-versions: |-
1.21.4
1.21.5
files: /home/runner/work/BentoBox/Border/target/Border-${{ github.event.release.tag_name }}.jar
files: ${{ github.workspace }}/target/Border-${{ github.event.release.tag_name }}.jar
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<!-- Revision variable removes warning about dynamic version -->
<revision>${build.version}-SNAPSHOT</revision>
<!-- This allows to change between versions and snapshots. -->
<build.version>4.8.3</build.version>
<build.version>4.8.4</build.version>
<build.number>-LOCAL</build.number>
<!-- Sonar Cloud -->
<sonar.projectKey>BentoBoxWorld_Border</sonar.projectKey>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
.orElseGet(() -> addon.getSettings().getColor());
switch(borderColor) {
case RED:
wb.changeSize(wb.getSize() - 0.1, MAX_TICKS);
wb.setSize(wb.getSize() - 0.1, MAX_TICKS);

Check warning on line 65 in src/main/java/world/bentobox/border/listeners/ShowWorldBorder.java

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Remove this call to a deprecated method, it has been marked for removal.

See more on https://sonarcloud.io/project/issues?id=BentoBoxWorld_Border&issues=AZ5iWh3qNZwKksNF7d98&open=AZ5iWh3qNZwKksNF7d98&pullRequest=174
break;
case GREEN:
wb.changeSize(wb.getSize() + 0.1, MAX_TICKS);
wb.setSize(wb.getSize() + 0.1, MAX_TICKS);

Check warning on line 68 in src/main/java/world/bentobox/border/listeners/ShowWorldBorder.java

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Remove this call to a deprecated method, it has been marked for removal.

See more on https://sonarcloud.io/project/issues?id=BentoBoxWorld_Border&issues=AZ5iWh3qNZwKksNF7d99&open=AZ5iWh3qNZwKksNF7d99&pullRequest=174
break;
case BLUE:
break;
Expand Down
Loading