Merge branch 'master' of github.com:wesnoth/wesnoth-old

This commit is contained in:
Alexander van Gessel 2013-12-07 17:46:42 +01:00
commit 316da34400

View file

@ -982,22 +982,22 @@ class HTMLOutput:
# Use nice images for known mainline terrain types
if tid == "fungus": ticon = "forest/mushrooms-tile"
elif tid = "cave": ticon = "cave/floor6"
elif tid = "sand": ticon = "sand/beach"
elif tid = "reef": ticon = "water/reef-tropical-tile"
elif tid = "hills": ticon = "hills/regular"
elif tid = "swamp_water": ticon = "swamp/water-tile"
elif tid = "shallow_water": ticon = "water/coast-tile"
elif tid = "castle": ticon = "castle/castle-tile"
elif tid = "mountains": ticon = "mountains/snow-tile"
elif tid = "deep_water": ticon = "water/ocean-tile"
elif tid = "flat": ticon = "grass/green-symbol"
elif tid = "forest": ticon = "forest/pine-tile"
elif tid = "frozen": ticon = "frozen/ice"
elif tid = "village": ticon = "village/human-tile"
elif tid = "impassable": ticon = "void/void"
elif tid = "unwalkable": ticon = "unwalkable/lava"
elif tid = "rails": ticon = "misc/rails-ne-sw"
elif tid == "cave": ticon = "cave/floor6"
elif tid == "sand": ticon = "sand/beach"
elif tid == "reef": ticon = "water/reef-tropical-tile"
elif tid == "hills": ticon = "hills/regular"
elif tid == "swamp_water": ticon = "swamp/water-tile"
elif tid == "shallow_water": ticon = "water/coast-tile"
elif tid == "castle": ticon = "castle/castle-tile"
elif tid == "mountains": ticon = "mountains/snow-tile"
elif tid == "deep_water": ticon = "water/ocean-tile"
elif tid == "flat": ticon = "grass/green-symbol"
elif tid == "forest": ticon = "forest/pine-tile"
elif tid == "frozen": ticon = "frozen/ice"
elif tid == "village": ticon = "village/human-tile"
elif tid == "impassable": ticon = "void/void"
elif tid == "unwalkable": ticon = "unwalkable/lava"
elif tid == "rails": ticon = "misc/rails-ne-sw"
if ticon:
terrainlist.append((name, tid, ticon))