diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/map/dummy.c | 40 | ||||
-rw-r--r-- | src/map/dummy.h | 11 | ||||
-rw-r--r-- | src/map/init.c | 1 |
4 files changed, 0 insertions, 54 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index e036427..7fe4f14 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -16,8 +16,6 @@ LOGIN_SRC = login/config.c \ MAP_SRC = map/clif.c \ map/clif.h \ - map/dummy.c \ - map/dummy.h \ map/init.c \ map/lang.c \ map/lang.h \ diff --git a/src/map/dummy.c b/src/map/dummy.c deleted file mode 100644 index ae579b7..0000000 --- a/src/map/dummy.c +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. -// Copyright (c) 2014 Evol developers - -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - -#include "../../../common/HPMi.h" -#include "../../../common/malloc.h" -#include "../../../common/mmo.h" -#include "../../../common/socket.h" -#include "../../../common/strlib.h" -#include "../../../map/clif.h" -#include "../../../map/pc.h" -#include "../../../map/script.h" - -void showNotImplimented() -{ - ShowWarning("Not implimented\n"); -} - -BUILDIN(dummy) -{ - showNotImplimented(); - return true; -} - -BUILDIN(dummyStr) -{ - showNotImplimented(); - script_pushconststr(st, ""); - return true; -} - -BUILDIN(dummyInt) -{ - showNotImplimented(); - script_pushint(st, 0); - return true; -} diff --git a/src/map/dummy.h b/src/map/dummy.h deleted file mode 100644 index e799586..0000000 --- a/src/map/dummy.h +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. -// Copyright (c) 2014 Evol developers - -#ifndef EVOL_MAP_DUMMY -#define EVOL_MAP_DUMMY - -BUILDIN(dummy); -BUILDIN(dummyInt); -BUILDIN(dummyStr); - -#endif // EVOL_MAP_DUMMY diff --git a/src/map/init.c b/src/map/init.c index 03e6320..2f309da 100644 --- a/src/map/init.c +++ b/src/map/init.c @@ -35,7 +35,6 @@ #include "common/interfaces.h" #include "map/clif.h" -#include "map/dummy.h" #include "map/lang.h" #include "map/npc.h" #include "map/parse.h" |