Skip to content

Commit

Permalink
fix: Hide mapscene sprite 22
Browse files Browse the repository at this point in the history
  • Loading branch information
Pazaz authored Mar 23, 2024
1 parent d4eec41 commit e5aec97
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions client/src/main/java/client.java
Original file line number Diff line number Diff line change
Expand Up @@ -6564,6 +6564,11 @@ protected void load() {

try {
for (int i = 0; i < 50; i++) {
if (i == 22) {
// weird debug sprite along water
continue;
}

this.imageMapscene[i] = new Pix8(media, "mapscene", i);
}
} catch (@Pc(468) Exception ex) {
Expand Down

0 comments on commit e5aec97

Please sign in to comment.