From 965275cb19f0a8cbbb5e5169b8c888e0cb228868 Mon Sep 17 00:00:00 2001 From: mark Date: Wed, 21 Jun 2006 22:41:20 +0000 Subject: [PATCH] fix typos --- Scripts/Engines/MyRunUO/Config.cs | 2 +- Scripts/Gumps/RunebookGump.cs | 2 +- Scripts/Items/Misc/PlayerBulletinBoards.cs | 2 +- Scripts/Misc/DataPath.cs | 2 +- Server/Main.cs | 10 +++++----- Server/Mobile.cs | 2 +- Server/Utility.cs | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Scripts/Engines/MyRunUO/Config.cs b/Scripts/Engines/MyRunUO/Config.cs index 90d3fd18e..58a72a4bf 100644 --- a/Scripts/Engines/MyRunUO/Config.cs +++ b/Scripts/Engines/MyRunUO/Config.cs @@ -28,7 +28,7 @@ namespace Server.Engines.MyRunUO // Text encoding used public static Encoding EncodingIO = Encoding.ASCII; - // Database communication is done in a seperate thread. This value is the 'priority' of that thread, or, how much CPU it will try to use + // Database communication is done in a separate thread. This value is the 'priority' of that thread, or, how much CPU it will try to use public static ThreadPriority DatabaseThreadPriority = ThreadPriority.BelowNormal; // Any character with an AccessLevel equal to or higher than this will not be displayed diff --git a/Scripts/Gumps/RunebookGump.cs b/Scripts/Gumps/RunebookGump.cs index cdc1d838b..01d5c12bf 100644 --- a/Scripts/Gumps/RunebookGump.cs +++ b/Scripts/Gumps/RunebookGump.cs @@ -48,7 +48,7 @@ namespace Server.Gumps // Background image AddImage( 100, 10, 2200 ); - // Two seperators + // Two separators for ( int i = 0; i < 2; ++i ) { int xOffset = 125 + (i * 165); diff --git a/Scripts/Items/Misc/PlayerBulletinBoards.cs b/Scripts/Items/Misc/PlayerBulletinBoards.cs index 79dc60fa8..1f6c49f3c 100644 --- a/Scripts/Items/Misc/PlayerBulletinBoards.cs +++ b/Scripts/Items/Misc/PlayerBulletinBoards.cs @@ -599,7 +599,7 @@ namespace Server.Items if ( page >= 1 && page <= board.Messages.Count ) message = (PlayerBBMessage)board.Messages[page - 1]; - AddImageTiled( 150, 220, 240, 1, 2700 ); // Seperator + AddImageTiled( 150, 220, 240, 1, 2700 ); // Separator AddHtmlLocalized( 150, 180, 100, 20, 1062405, 16715, false, false ); // Posted On: AddHtmlLocalized( 150, 200, 100, 20, 1062406, 16715, false, false ); // Posted By: diff --git a/Scripts/Misc/DataPath.cs b/Scripts/Misc/DataPath.cs index a12bfa43d..3f9cf944b 100644 --- a/Scripts/Misc/DataPath.cs +++ b/Scripts/Misc/DataPath.cs @@ -8,7 +8,7 @@ namespace Server.Misc public class DataPath { /* If you have not installed Ultima Online, - * or wish the server to use a seperate set of datafiles, + * or wish the server to use a separate set of datafiles, * change the 'CustomPath' value, example: * * private const string CustomPath = @"C:\Program Files\Ultima Online"; diff --git a/Server/Main.cs b/Server/Main.cs index be726be52..2ede32531 100644 --- a/Server/Main.cs +++ b/Server/Main.cs @@ -481,19 +481,19 @@ namespace Server StringBuilder sb = new StringBuilder(); if( Core.Debug ) - Utility.Seperate( sb, "-debug", " " ); + Utility.Separate( sb, "-debug", " " ); if( Core.Service ) - Utility.Seperate( sb, "-service", " " ); + Utility.Separate( sb, "-service", " " ); if( Core.Profiling ) - Utility.Seperate( sb, "-profile", " " ); + Utility.Separate( sb, "-profile", " " ); if( !m_Cache ) - Utility.Seperate( sb, "-nocache", " " ); + Utility.Separate( sb, "-nocache", " " ); if( m_HaltOnWarning ) - Utility.Seperate( sb, "-haltonwarning", " " ); + Utility.Separate( sb, "-haltonwarning", " " ); return sb.ToString(); } diff --git a/Server/Mobile.cs b/Server/Mobile.cs index 688085f83..9291e46b5 100644 --- a/Server/Mobile.cs +++ b/Server/Mobile.cs @@ -4303,7 +4303,7 @@ namespace Server } catch { - Console.WriteLine( "Warning: 0x{0:X}: Item must have a zero paramater constructor to be seperated from a stack. '{1}'.", oldItem.Serial.Value, oldItem.GetType().Name ); + Console.WriteLine( "Warning: 0x{0:X}: Item must have a zero paramater constructor to be separated from a stack. '{1}'.", oldItem.Serial.Value, oldItem.GetType().Name ); return null; } item.Visible = oldItem.Visible; diff --git a/Server/Utility.cs b/Server/Utility.cs index 7802de047..e131d1ebd 100644 --- a/Server/Utility.cs +++ b/Server/Utility.cs @@ -59,10 +59,10 @@ namespace Server } } - public static void Seperate( StringBuilder sb, string value, string seperator ) + public static void Separate( StringBuilder sb, string value, string separator ) { if ( sb.Length > 0 ) - sb.Append( seperator ); + sb.Append( separator ); sb.Append( value ); }