This is all I used to change on RunUO in "CurrentExpansion.cs, but doesn't work with ServUO. What needs to be changed?

#region References
using System;

using Server.Accounting;
using Server.Network;
#endregion

namespace Server
{
public class CurrentExpansion
{
public static readonly Expansion Expansion = Config.GetEnum<Expansion>("Expansion.CurrentExpansion", Expansion.UOR);

[CallPriority(Int32.MinValue)]
public static void Configure()
{
Core.Expansion = Expansion;
 
Config/Expansion.cfg file unfortunately does not exist. The latest updated files are available, maybe the filename has changed?
 
Back