(svn r9775) -Fix: Remove arbitrary limit on length of NewGRF strings.

This commit is contained in:
peter1138 2007-05-04 07:08:35 +00:00
parent 574013a920
commit 449e76c05a
1 changed files with 0 additions and 2 deletions

View File

@ -2734,8 +2734,6 @@ static void FeatureNewName(byte *buf, int len)
if (name_length == 1) {
grfmsg(7, "FeatureNewName: Can't add empty name");
} else if (name_length > 127) {
grfmsg(7, "FeatureNewName: Too long a name (%d)", name_length);
} else {
grfmsg(8, "FeatureNewName: %d <- %s", id, name);