File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public override async Task Process()
3737
3838 private async Task CleanGameFiles ( )
3939 {
40- if ( ! File . Exists ( COMMON_MP_FASTFILE ) || ! File . Exists ( COMMON_FASTFILE ) )
40+ if ( ! File . Exists ( COMMON_MP_FASTFILE ) && ! File . Exists ( COMMON_FASTFILE ) )
4141 {
4242 Helpers . WriteColor ( "Your game is already clean!\n If not, make sure you have put the file in the correct game folder.\n " , ConsoleColor . Yellow ) ;
4343 return ;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public override async Task Process()
3737
3838 private async Task CleanGameFiles ( )
3939 {
40- if ( ! File . Exists ( COMMON_MP_FASTFILE ) || ! File . Exists ( COMMON_FASTFILE ) )
40+ if ( ! File . Exists ( COMMON_MP_FASTFILE ) && ! File . Exists ( COMMON_FASTFILE ) )
4141 {
4242 Helpers . WriteColor ( "Your game is already clean!\n If not, make sure you have put the file in the correct game folder.\n " , ConsoleColor . Yellow ) ;
4343 return ;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public override async Task Process()
3737
3838 private async Task CleanGameFiles ( )
3939 {
40- if ( ! File . Exists ( COMMON_MP_FASTFILE ) || ! File . Exists ( COMMON_FASTFILE ) )
40+ if ( ! File . Exists ( COMMON_MP_FASTFILE ) && ! File . Exists ( COMMON_FASTFILE ) )
4141 {
4242 Helpers . WriteColor ( "Your game is already clean!\n If not, make sure you have put the file in the correct game folder.\n " , ConsoleColor . Yellow ) ;
4343 return ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public override async Task Process()
4848
4949 private async Task CleanGameFiles ( )
5050 {
51- if ( ! File . Exists ( COMMON_MP_FASTFILE ) || ! File . Exists ( COMMON_FASTFILE ) )
51+ if ( ! File . Exists ( COMMON_MP_FASTFILE ) && ! File . Exists ( COMMON_FASTFILE ) )
5252 {
5353 Helpers . WriteColor ( "Your game is already clean!\n If not, make sure you have put the file in the correct game folder.\n " , ConsoleColor . Yellow ) ;
5454 return ;
You can’t perform that action at this time.
0 commit comments