summaryrefslogtreecommitdiff
path: root/src/map/script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/script.cpp')
-rw-r--r--src/map/script.cpp11
1 files changed, 1 insertions, 10 deletions
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;