Skip to content

Commit

Permalink
Fix support for versions prior to 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
PseudoKnight committed Nov 27, 2016
1 parent d3e225d commit 941724d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -27,7 +27,7 @@ public EnderDragon getHandle() {

@Override
public MCEnderDragonPhase getPhase() {
return BukkitMCEnderDragonPhase.getConvertor().getAbstractedEnum(ed.getPhase());
return MCEnderDragonPhase.valueOf(ed.getPhase().name());
}

@Override
Expand Down

0 comments on commit 941724d

Please sign in to comment.