//This means that a fire cannot spread from a level 6 building at base level 0 to
//a level 1 building at base level 0, for example.
int curHeight = game.getBoard().getHex(src).ceiling();
TargetRoll directroll = new TargetRoll(9, "spread downwind");
TargetRoll obliqueroll = new TargetRoll(11, "spread 60 degrees to downwind");
if((windStr > PlanetaryConditions.WI_NONE) && (windStr < PlanetaryConditions.WI_STRONG_GALE)) {
directroll.addModifier(-2, "light/moderate gale");
obliqueroll.addModifier(-1, "light/moderate gale");
}
else if(windStr > PlanetaryConditions.WI_MOD_GALE) {
directroll.addModifier(-3, "strong gale+");
directroll.addModifier(-2, "strong gale+");
}