From: Matthias Braun Date: Sun, 28 Nov 2004 15:17:50 +0000 (+0000) Subject: tilegroups are not sets but should be used in a 4-column grid it seems... X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=29c5af90b2e2faa539010e1d35ce4d682558611c;p=supertux.git tilegroups are not sets but should be used in a 4-column grid it seems... SVN-Revision: 2213 --- diff --git a/contrib/tilemanager/TileSet.cs b/contrib/tilemanager/TileSet.cs index 0d50402d0..9ea416468 100644 --- a/contrib/tilemanager/TileSet.cs +++ b/contrib/tilemanager/TileSet.cs @@ -30,8 +30,7 @@ public class TileGroup { break; case "tiles": do { - if(!Tiles.Contains(parser.IntegerValue)) - Tiles.Add(parser.IntegerValue); + Tiles.Add(parser.IntegerValue); } while(parser.Parse() && parser.Type == Parser.LispType.INTEGER); break;