Skip to content

Commit

Permalink
Small changes to how dim detection works
Browse files Browse the repository at this point in the history
  • Loading branch information
Azazelthedemonlord committed May 13, 2020
1 parent a001562 commit 9b9bc4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#
#Tue May 12 20:09:07 CDT 2020
#Tue May 12 22:12:47 CDT 2020
mod_name=Azzy's Ambience
forge_version=14.21.0.2331
dir_repo=./
dir_forgecraft=D\:/Seafile/incoming/ForgeCraft2/mods
mc_mappings=snapshot_20161220
version=1.0
version=1.1
dir_output=../Build Output/Ambience/
mc_version=1.12
build_number=158
build_number=160
3 changes: 2 additions & 1 deletion src/main/java/vazkii/ambience/SongPicker.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ public static String[] getSongs() {

while(!dimensions.isEmpty()){
int dim = dimensions.remove();
return dimensionMap.get(dim);
if(dim == indimension)
return dimensionMap.get(dim);
}

Entity riding = player.getRidingEntity();
Expand Down

0 comments on commit 9b9bc4c

Please sign in to comment.