Flight Glitch

Attempt to always revert the players permissions when they get out of
flying.
This commit is contained in:
nathank33 2014-09-04 14:47:39 -07:00
parent 566b2055f8
commit 5f3ca7883e

View file

@ -126,7 +126,7 @@ public class Flight {
public static void removeAll() { public static void removeAll() {
for (Player player : instances.keySet()) { for (Player player : instances.keySet()) {
Flight flight = instances.get(player); Flight flight = instances.get(player);
if (flight.source != null) //if (flight.source != null)
flight.revert(); flight.revert();
flight.remove(); flight.remove();
} }