while ((line = lnr.readLine()) != null)
{
if (line.trim().length() == 0 || line.startsWith("#"))
continue;
L2BoatInstance boat = parseLine(line);
boat.spawn();
_staticItems.put(boat.getObjectId(), boat);
if(Config.DEBUG)
{
System.out.println("Boat ID : " + boat.getObjectId());
}