projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef57479
)
tilegroups are not sets but should be used in a 4-column grid it seems...
author
Matthias Braun
<matze@braunis.de>
Sun, 28 Nov 2004 15:17:50 +0000
(15:17 +0000)
committer
Matthias Braun
<matze@braunis.de>
Sun, 28 Nov 2004 15:17:50 +0000
(15:17 +0000)
SVN-Revision: 2213
contrib/tilemanager/TileSet.cs
patch
|
blob
|
history
diff --git
a/contrib/tilemanager/TileSet.cs
b/contrib/tilemanager/TileSet.cs
index
0d50402
..
9ea4164
100644
(file)
--- 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;