From f909528c7e64ac7180d9a544f12912efd0867a67 Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Wed, 9 Jan 2013 15:21:53 -0800 Subject: Remove all non-NPC skills --- src/map/script.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'src/map/script.cpp') diff --git a/src/map/script.cpp b/src/map/script.cpp index a82cd66..d8c7c51 100644 --- a/src/map/script.cpp +++ b/src/map/script.cpp @@ -3372,7 +3372,7 @@ enum //MF_GVG = 9, //MF_GVG_NOPARTY = 10, MF_NOTRADE = 11, - MF_NOSKILL = 12, + //MF_NOSKILL = 12, MF_NOWARP = 13, MF_NOPVP = 14, MF_NOICEWALL = 15, @@ -3416,9 +3416,6 @@ void builtin_setmapflag(ScriptState *st) case MF_NOTRADE: map[m].flag.notrade = 1; break; - case MF_NOSKILL: - map[m].flag.noskill = 1; - break; case MF_NOWARP: map[m].flag.nowarp = 1; break; @@ -3481,9 +3478,6 @@ void builtin_removemapflag(ScriptState *st) case MF_NOZENYPENALTY: map[m].flag.nozenypenalty = 0; break; - case MF_NOSKILL: - map[m].flag.noskill = 0; - break; case MF_NOWARP: map[m].flag.nowarp = 0; break; @@ -3547,9 +3541,6 @@ void builtin_getmapflag(ScriptState *st) case MF_NOZENYPENALTY: r = map[m].flag.nozenypenalty; break; - case MF_NOSKILL: - r = map[m].flag.noskill; - break; case MF_NOWARP: r = map[m].flag.nowarp; break; -- cgit v1.2.3-60-g2f50