Small commit:

Housing:
Stairs should be sectionable
http://www.uodemise.com/forum/showthread.php?t=120218

Mobiles:
Dull Copper Elementals should drop chests
http://www.uodemise.com/forum/showthread.php?t=145394

Misc:
Snowpiles should not be usable when mounted
http://www.uodemise.com/forum/showthread.php?t=145522

Explosion potion timer should not be stopped by picking them up/scavenging
http://www.uodemise.com/forum/showthread.php?t=143523

1 day cool-down timer on soulstones is removed
http://www.uodemise.com/forum/showthread.php?t=138760
This commit is contained in:
xavier 2010-06-13 19:30:47 +00:00
parent 3956b8c804
commit 01eee98298
6 changed files with 61 additions and 41 deletions

View file

@ -61,6 +61,9 @@ namespace Server.Items
{
from.SendLocalizedMessage( 1042010 ); // You must have the object in your backpack to use it.
}
else if ( from.Mounted )
from.SendLocalizedMessage ( 1010097 ); // You cannot use this while mounted.
else if ( from.CanBeginAction( typeof( SnowPile ) ) )
{
from.SendLocalizedMessage( 1005575 ); // You carefully pack the snow into a ball...

View file

@ -47,6 +47,9 @@ namespace Server.Items
{
from.SendLocalizedMessage( 1042010 ); // You must have the object in your backpack to use it.
}
else if ( from.Mounted )
from.SendLocalizedMessage ( 1010097 ); // You cannot use this while mounted.
else if ( from.CanBeginAction( typeof( SnowPile ) ) )
{
from.SendLocalizedMessage( 1005575 ); // You carefully pack the snow into a ball...