Disabled NPC check in player quit event

This commit is contained in:
Tim Visée 2015-11-25 01:13:06 +01:00
parent 2c0d140da9
commit 2c2dd8e0d5
2 changed files with 2 additions and 1 deletions

View File

@ -13,5 +13,6 @@
</value>
</option>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
<option name="PREFERRED_PROJECT_CODE_STYLE" value="GoogleStyle" />
</component>
</project>

View File

@ -47,7 +47,7 @@ public class AsynchronousQuit {
public void process() {
if (player == null)
return;
if (Utils.isNPC(player) || Utils.isUnrestricted(player)) {
if (/*Utils.isNPC(player) || */Utils.isUnrestricted(player)) {
return;
}