diff --git a/binaries/data/mods/public/simulation/helpers/Technology.js b/binaries/data/mods/public/simulation/helpers/Technology.js index 45a50e1400..fdda94654c 100644 --- a/binaries/data/mods/public/simulation/helpers/Technology.js +++ b/binaries/data/mods/public/simulation/helpers/Technology.js @@ -4,7 +4,7 @@ function ApplyTechModificationsToEntity(tech_type, current_value, entity) { var cmpTechMan = QueryOwnerInterface(entity, IID_TechnologyManager); if (cmpTechMan) - var value = cmpTechMan.ApplyModificationsTemplate(tech_type, current_value, entity); + var value = cmpTechMan.ApplyModifications(tech_type, current_value, entity); else var value = current_value;