From a9d1a039fba2e5c9c3812c3a5625492b8f1479d6 Mon Sep 17 00:00:00 2001 From: ultramage Date: Sat, 13 Oct 2007 14:19:08 +0000 Subject: [PATCH] Fixed a messup in r11398 - option to skip brackets around item scripts was added but not used where it should have been. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11452 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/itemdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/itemdb.c b/src/map/itemdb.c index 99e74cbbe7..9d533ad70a 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -938,7 +938,7 @@ static int itemdb_read_sqldb(void) if( str[i] == NULL ) str[i] = dummy; // get rid of NULL columns } - if (!itemdb_parse_dbrow(str, item_db_name[fi], lines, 0)) + if (!itemdb_parse_dbrow(str, item_db_name[fi], lines, SCRIPT_IGNORE_EXTERNAL_BRACKETS)) continue; ++count; }