Fixed: "X time counter(s)" for suspend keyword, caused by not adding number hints for non-numeric things;

No longer request thumbnails of missing images

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@714 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-09-20 17:54:10 +00:00
parent 916f48a48d
commit e4f9bf1eac
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -122,13 +122,14 @@ String do_english_num(String input, String(*fun)(int)) {
}
}
}
return _("<hint-2>") + input;
} else {
long i = 0;
if (input.ToLong(&i)) {
return fun(i);
}
return input;
}
return input;
}
SCRIPT_FUNCTION(english_number) {