#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

@ -3297,8 +3297,10 @@ namespace Server.Multis
{
for ( int j = 0; j < list.Count; ++j )
{
if ( !list[j].Deleted )
count++;
BaseHouse h = list[j];
if ( !h.Deleted && !(h is Server.Custom.InnRooms.InnRoomHouse) )
count++;
}
}
}