#W# Inn rooms are limited to 1. Also tweaked the weather some.

This commit is contained in:
WarrentyExpired 2026-08-24 20:35:58 -04:00
parent 770b95bb64
commit 72562f1970
4 changed files with 34 additions and 30 deletions

View file

@ -23,14 +23,9 @@ namespace Server.Misc
*/
// ice island
AddWeather( -15, 100, 5, new Rectangle2D( 1479, 47, 865, 319 ) );
// covetous entrance, around vesper and minoc
//AddWeather( +15, 50, 5, new Rectangle2D( 2425, 725, 250, 250 ) );
// despise entrance, north of britain
//AddWeather( +15, 50, 5, new Rectangle2D( 1245, 1045, 250, 250 ) );
AddWeather( -15, 75, 10, new Rectangle2D( 1479, 47, 865, 319 ) );
// desert island
AddWeather( +15, 0, 5, new Rectangle2D(791, 1619, 140, 64 ) );
/* Dynamic weather:
*
@ -39,7 +34,7 @@ namespace Server.Misc
*/
for ( int i = 0; i < 15; ++i )
AddDynamicWeather( +15, 100, 5, 8, 400, 400, new Rectangle2D( 0, 0, 2344, 1991 ) );
AddDynamicWeather( +15, 25, 5, 8, 400, 400, new Rectangle2D( 0, 0, 2344, 1991 ) );
}
public static List<Weather> GetWeatherList( Map facet )