CM Unsupported - xAranaktu/FC-26-Live-Editor GitHub Wiki
Career Mode Unsupported Teams And Leagues
On February 3, 2026, in FC 26 version 1.4.2, EA added two new functions:
DeleteUnsupportedCMLeaguesDeleteUnsupportedCMTeams
These functions use a hard-coded list of teams and leagues that are allowed in Career Mode. Anything not on the list is deleted when you start a new career. Because the list is hard-coded, you can’t alter it by editing any database tables or legacy files. The change must be made in the game code. That’s why Live Editor provides a solution to this problem.
Solution
This functionality requires Live Editor v26.2.6 or newer
Live Editor allows you to control which team/league is deleted.
You can do it by creating new LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv file in C:\FC 26 Live Editor\mods\legacy\data folder. (or add it to data folder in legacy files in your mod)

The file must contain 6 columns:
id-Team IDorLeague IDdepends onis_leaguefieldis_league-1or0. Should be1if theidis league, otherwise set it to0is_supported-1or0.1if you want to keep team/league,0if you want to delete itdelete_players-1or0. Delete players when delete teamdelete_player_related_records-1or0. Delete records from teamplayerlinks, playerloans etc.delete_playersmust be equal to1for this to workdelete_manager.1or0. Delete manager when delete team. I think it should always be1

Example
Example content of the LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv file.
Made only for demonstration purpose.
DOWNLOAD TEMPLATE FILE: LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv
id,is_league,is_supported,delete_players,delete_player_related_records,delete_manager
111114,0,1,0,0,0
111205,0,1,0,0,0
1337,0,0,1,0,1
1318,0,0,1,0,1
20,1,0,1,0,1
It will:
- Delete
Germany National Team(ID: 1337) - Delete
England National Team(ID: 1318) - Delete all teams in
Bundesliga 2(ID: 20) - Prevent the game from deleting
Saudi Arabia National Team(ID: 111114) - Prevent the game from deleting
Classic XI(ID: 111205)
Testing
Live Editor will log every attempt to delete league or team.
Start new career and check in log file for Delete league team data or Delete full league data entries to figure out which teams and leagues are deleted from the game.
Also, if you want to modify LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv without restarting the game do the following:
- Load career mode
- Modify
LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csvfile - Exit career mode
- Start new career (at this point live editor should load fresh copy of the
LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csvfile)
FAQ
- Do I always need Live Editor to make this work?
- Yes. The entire logic is implemented in Live Editor. If you play without Live Editor, the game will use its original code.