@@ -1428,7 +1428,7 @@ public void Init( )
14281428 DoInit ( Path . GetDirectoryName ( Assembly . GetExecutingAssembly ( ) . Location ) + "\\ " ) ;
14291429 }
14301430
1431- public void InitWithPath ( string modPath )
1431+ public void InitWithPath ( String modPath )
14321432 {
14331433 //register object builder assembly
14341434 string path = System . IO . Path . Combine ( AppDomain . CurrentDomain . BaseDirectory , "SpaceEngineers.ObjectBuilders.DLL" ) ;
@@ -1613,7 +1613,7 @@ private void HandleHelpCommand( ulong remoteUserId, IReadOnlyCollection<string>
16131613 // Again, we should get handler to just return string[] of command Text
16141614 if ( handler . GetMultipleCommandText ( ) . Length < 1 )
16151615 {
1616- if ( string . Equals ( handler . GetCommandText ( ) , helpTarget , StringComparison . CurrentCultureIgnoreCase ) )
1616+ if ( String . Equals ( handler . GetCommandText ( ) , helpTarget , StringComparison . CurrentCultureIgnoreCase ) )
16171617 {
16181618 Communication . SendPrivateInformation ( remoteUserId , handler . GetHelp ( ) ) ;
16191619 found = true ;
@@ -1623,7 +1623,7 @@ private void HandleHelpCommand( ulong remoteUserId, IReadOnlyCollection<string>
16231623 {
16241624 foreach ( string cmd in handler . GetMultipleCommandText ( ) )
16251625 {
1626- if ( string . Equals ( cmd , helpTarget , StringComparison . CurrentCultureIgnoreCase ) )
1626+ if ( String . Equals ( cmd , helpTarget , StringComparison . CurrentCultureIgnoreCase ) )
16271627 {
16281628 Communication . SendPrivateInformation ( remoteUserId , handler . GetHelp ( ) ) ;
16291629 found = true ;
@@ -1720,7 +1720,7 @@ private void HandleHelpDialog(ulong remoteUserId, IReadOnlyCollection<string> co
17201720 // Again, we should get handler to just return string[] of command Text
17211721 if ( handler . GetMultipleCommandText ( ) . Length < 1 )
17221722 {
1723- if ( string . Equals ( handler . GetCommandText ( ) , helpTarget , StringComparison . CurrentCultureIgnoreCase ) )
1723+ if ( String . Equals ( handler . GetCommandText ( ) , helpTarget , StringComparison . CurrentCultureIgnoreCase ) )
17241724 {
17251725 Communication . DisplayDialog ( remoteUserId , handler . GetHelpDialog ( ) ) ;
17261726 found = true ;
@@ -1730,7 +1730,7 @@ private void HandleHelpDialog(ulong remoteUserId, IReadOnlyCollection<string> co
17301730 {
17311731 foreach ( string cmd in handler . GetMultipleCommandText ( ) )
17321732 {
1733- if ( string . Equals ( cmd , helpTarget , StringComparison . CurrentCultureIgnoreCase ) )
1733+ if ( String . Equals ( cmd , helpTarget , StringComparison . CurrentCultureIgnoreCase ) )
17341734 {
17351735 Communication . DisplayDialog ( remoteUserId , handler . GetHelpDialog ( ) ) ;
17361736 found = true ;
0 commit comments