mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-08-15 14:43:32 -07:00
Remove TechnologyManager relict of 99d04e93bb following c1e86161b5.
This was SVN commit r20616.
This commit is contained in:
parent
ae343e8e9d
commit
2fd163a08a
2 changed files with 2 additions and 10 deletions
|
|
@ -465,12 +465,6 @@ TechnologyManager.prototype.GetResearcher = function(tech)
|
|||
return this.researchQueued.get(tech)
|
||||
};
|
||||
|
||||
// Get helper data for tech modifications
|
||||
TechnologyManager.prototype.GetTechModifications = function()
|
||||
{
|
||||
return this.modifications;
|
||||
};
|
||||
|
||||
/**
|
||||
* Called by GUIInterface for PlayerData. AI use.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -129,8 +129,7 @@ AddMock(100, IID_TechnologyManager, {
|
|||
"GetStartedTechs": () => new Set(),
|
||||
"GetResearchedTechs": () => new Set(),
|
||||
"GetClassCounts": () => ({}),
|
||||
"GetTypeCountsByClass": () => ({}),
|
||||
"GetTechModifications": () => ({})
|
||||
"GetTypeCountsByClass": () => ({})
|
||||
});
|
||||
|
||||
AddMock(100, IID_StatisticsTracker, {
|
||||
|
|
@ -215,8 +214,7 @@ AddMock(101, IID_TechnologyManager, {
|
|||
"GetStartedTechs": () => new Set(),
|
||||
"GetResearchedTechs": () => new Set(),
|
||||
"GetClassCounts": () => ({}),
|
||||
"GetTypeCountsByClass": () => ({}),
|
||||
"GetTechModifications": () => ({})
|
||||
"GetTypeCountsByClass": () => ({})
|
||||
});
|
||||
|
||||
AddMock(101, IID_StatisticsTracker, {
|
||||
|
|
|
|||
Loading…
Reference in a new issue