Skip to content

Commit

Permalink
fix id error
Browse files Browse the repository at this point in the history
  • Loading branch information
YOLOP0wn authored and alaingilbert committed Oct 2, 2022
1 parent 50ab916 commit e940fcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/extractor/v71/extracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ func extractTechs(pageHTML []byte) (supplies ogame.ResourcesBuildings, facilitie
AssemblyLine: res.Num13101,
FusionCellFactory: res.Num13102,
RoboticsResearchCentre: res.Num13103,
UpdateNetwork: res.Num12304,
UpdateNetwork: res.Num13104,
QuantumComputerCentre: res.Num13105,
AutomatisedAssemblyCentre: res.Num13106,
HighPerformanceTransformer: res.Num13107,
Expand Down
2 changes: 1 addition & 1 deletion pkg/extractor/v9/extracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ func extractLfBuildingsFromDoc(doc *goquery.Document) (ogame.LfBuildings, error)
res.AssemblyLine = GetNbr(doc, "lifeformTech13101")
res.FusionCellFactory = GetNbr(doc, "lifeformTech13102")
res.RoboticsResearchCentre = GetNbr(doc, "lifeformTech13103")
res.UpdateNetwork = GetNbr(doc, "lifeformTech12304")
res.UpdateNetwork = GetNbr(doc, "lifeformTech13104")
res.QuantumComputerCentre = GetNbr(doc, "lifeformTech13105")
res.AutomatisedAssemblyCentre = GetNbr(doc, "lifeformTech13106")
res.HighPerformanceTransformer = GetNbr(doc, "lifeformTech13107")
Expand Down

0 comments on commit e940fcf

Please sign in to comment.