File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ import {
4343 getSameCommands ,
4444 doesCommandHaveAnyAttributeInvalid ,
4545 replaceType ,
46+ GameEditions ,
4647} from '../../utils' ;
4748import { AuthFacade } from '../auth/facade' ;
4849import { GameFacade } from '../game/facade' ;
@@ -120,7 +121,11 @@ export class ExtensionsEffects {
120121 ) ,
121122 take ( 1 ) ,
122123 map ( ( [ supportInfo , oldCommand ] ) => {
123- if ( shouldUpdateOtherGames ( command , oldCommand ) ) {
124+ if (
125+ // disable cross-update for IV/Unknown
126+ GameEditions [ Game . unknown_x86 ] . includes ( game ) &&
127+ shouldUpdateOtherGames ( command , oldCommand )
128+ ) {
124129 return getSameCommands ( supportInfo , game ) . map ( ( d ) => ( {
125130 game : d . game ,
126131 command,
Original file line number Diff line number Diff line change 11import { flatten } from 'lodash' ;
22import { Game } from '../models' ;
33
4- const GameEditions = {
4+ export const GameEditions = {
55 [ Game . gta3 ] : [ Game . gta3 , Game . gta3_mobile , Game . gta3_unreal ] ,
66 [ Game . vc ] : [ Game . vc , Game . vc_mobile , Game . vc_unreal ] ,
77 [ Game . sa ] : [ Game . sa , Game . sa_mobile , Game . sa_unreal ] ,
You can’t perform that action at this time.
0 commit comments