diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/script.c | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index fa810923c..c95a094a8 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2007/07/03 + * Defined out a problematic piece code in conv_num. * Added reporting of constant and param script data. * Fixed an incorrect check in menu script command. [FlavioJS] 2007/07/02 diff --git a/src/map/script.c b/src/map/script.c index 68cbb2bdc..c3985a4a3 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -2376,6 +2376,9 @@ int conv_num(struct script_state* st, struct script_data* data) data->type = C_INT; data->u.num = (int)num; } +#if 0 + // FIXME this function is being used to retrieve the position of labels and + // probably other stuff [FlavioJS] else {// unsupported data type ShowError("script:conv_num: cannot convert to number, defaulting to 0\n"); @@ -2384,6 +2387,7 @@ int conv_num(struct script_state* st, struct script_data* data) data->type = C_INT; data->u.num = 0; } +#endif return data->u.num; } |