Reinstated vessel tileset colorization hack.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2194 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-01-18 23:09:37 +00:00
parent 48d04dc3ba
commit e78c7fad81
@@ -1,5 +1,5 @@
//
// $Id: TileSet.java,v 1.40 2003/01/17 02:30:50 mdb Exp $
// $Id: TileSet.java,v 1.41 2003/01/18 23:09:37 mdb Exp $
package com.threerings.media.tile;
@@ -45,6 +45,12 @@ public abstract class TileSet
public void setImageProvider (ImageProvider improv)
{
_improv = improv;
// HACKOLA: if we're a vessel tileset, colorize ourselves
if (_name != null && (this instanceof TrimmedObjectTileSet) &&
_name.indexOf("Vessel") != -1) {
_zations = ZATIONS;
}
}
/**