From 7d2f0c6634f2c8f70ba942b9128e100c6512bdb4 Mon Sep 17 00:00:00 2001 From: asayre Date: Wed, 7 Mar 2012 08:31:27 +0000 Subject: [PATCH] specifies column name in Inert into statement. --- Scripts/Engines/MyRunUO/MyRunUOStatus.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Engines/MyRunUO/MyRunUOStatus.cs b/Scripts/Engines/MyRunUO/MyRunUOStatus.cs index 0730fb6c9..82d1e4f92 100644 --- a/Scripts/Engines/MyRunUO/MyRunUOStatus.cs +++ b/Scripts/Engines/MyRunUO/MyRunUOStatus.cs @@ -58,7 +58,7 @@ namespace Server.Engines.MyRunUO Mobile mob = ns.Mobile; if ( mob != null ) - m_Command.Enqueue( String.Format( "INSERT INTO myrunuo_status VALUES ({0})", mob.Serial.Value.ToString() ) ); + m_Command.Enqueue( String.Format( "INSERT INTO myrunuo_status (char_id) VALUES ({0})", mob.Serial.Value.ToString() ) ); } } catch ( Exception e )