Skip to content

Commit

Permalink
The real release :)
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyPants committed Feb 24, 2014
1 parent 89e8602 commit bd252d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Bugs
- #484 ArrayIndexOutOfBoundsException with BC quarry
- #487 Teleport anchor and Ender IO acting wierd bug Code Complete
- #493 Crash with Mekanism Digital Miner bug Code Complete
- Reduced FPS hit when hiding / showing facades.


0.10.0
Expand Down
2 changes: 1 addition & 1 deletion common/crazypants/enderio/teleport/TileTravelAnchor.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private boolean checkPassword(ItemStack[] pwd) {

@Override
public boolean getRequiresPassword(String username) {
return !canUiBeAccessed(username) && !authorisedUsers.contains(username);
return getAccessMode() != AccessMode.PUBLIC && !canUiBeAccessed(username) && !authorisedUsers.contains(username);
}

@Override
Expand Down

0 comments on commit bd252d9

Please sign in to comment.