فهرست منبع

fixed isplayer to exclude citizens

Marvin Löschenkohl 1 سال پیش
والد
کامیت
f0294895b7
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/me/hammerle/kp/snuviscript/commands/Commands.java

+ 1 - 1
src/me/hammerle/kp/snuviscript/commands/Commands.java

@@ -18,7 +18,7 @@ public class Commands {
         });
         KajetansPlugin.scriptManager.registerFunction("isplayer", (sc, in) -> {
             Object o = in[0].get(sc);
-            return o != null && o instanceof Player;
+            return o != null && o instanceof Player && !o.hasMetadata("NPC");
         });
         KajetansPlugin.scriptManager.registerFunction("isliving", (sc, in) -> {
             Object o = in[0].get(sc);