Skip to content

Commit

Permalink
Fix accessors to not throw code inspection errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AMereBagatelle committed May 24, 2024
1 parent 1d244d4 commit 7cd675e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
public interface LevelRendererAccessor {
@Accessor("SUN_LOCATION")
static ResourceLocation getSun() {
throw new AssertionError();
return new ResourceLocation("");
}

@Accessor("MOON_LOCATION")
static ResourceLocation getMoonPhases() {
throw new AssertionError();
return new ResourceLocation("");
}

@Accessor("END_SKY_LOCATION")
static ResourceLocation getEndSky() {
throw new AssertionError();
return new ResourceLocation("");
}

@Accessor("skyBuffer")
Expand Down

0 comments on commit 7cd675e

Please sign in to comment.