|
||
|
|||||||
| Server Support on Windows Get (and give) support on general questions related to the RunUO server itself. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#2 (permalink) |
|
Master of the Internet
Join Date: Oct 2005
Age: 45
Posts: 6,283
|
from the 2.0 RC1 BaseVendor.cs:
Code:
public virtual TimeSpan RestockDelay
{
get
{
return TimeSpan.FromHours( 1 );
}
}
__________________
Why is it that I'm never as smart as I thought I was yesterday? My vast knowledge is only surpassed by my infinite ignorance. <TheOutkastDev> i might have to hire an assassin to killl mal so that i can jump in front of the bullet and piss on him |
|
|
|
|
|
#4 (permalink) |
|
Forum Expert
|
It is exactly the same in v1.0.
If you want to make the change Global, change BaseVendor like this: Code:
public virtual TimeSpan RestockDelay
{
get
{
return TimeSpan.FromMinutes( 1 );
}
}
Code:
public override TimeSpan RestockDelay
{
get
{
return TimeSpan.FromMinutes( 1 );
}
}
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|