diff options
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/map/map.c b/src/map/map.c index 43a05810c..fd50012e4 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1847,21 +1847,6 @@ struct map_session_data * map_nick2sd(const char *nick) return NULL; } -struct map_session_data * map_nick2sd_nocase(const char *nick) -{ - int i, users; - struct map_session_data **pl_allsd; - - pl_allsd = map_getallusers(&users); - for (i = 0; i < users; i++) - { - if ( !strcmp(pl_allsd[i]->status.name, nick) ) - return pl_allsd[i]; - } - - return NULL; -} - /*========================================== * id番?の物を探す * 一三bjectの場合は配列を引くのみ |