aboutsummaryrefslogtreecommitdiff
path: root/internal/game
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game')
-rw-r--r--internal/game/core_validate.go1
-rw-r--r--internal/game/sys_technology.go1
2 files changed, 0 insertions, 2 deletions
diff --git a/internal/game/core_validate.go b/internal/game/core_validate.go
index 4a2e5b9..0e302c0 100644
--- a/internal/game/core_validate.go
+++ b/internal/game/core_validate.go
@@ -32,7 +32,6 @@ func (g *Game) validationSource() validate.Source {
techViews = append(techViews, validate.TechView{
ID: t.ID,
Name: t.Name,
- Category: t.Category,
DrainRate: t.DrainRate,
})
techIDs[t.ID] = true
diff --git a/internal/game/sys_technology.go b/internal/game/sys_technology.go
index c7214af..e285ba8 100644
--- a/internal/game/sys_technology.go
+++ b/internal/game/sys_technology.go
@@ -33,7 +33,6 @@ type TechDef struct {
Name string `yaml:"name"`
Level int `yaml:"level"`
DrainRate float64 `yaml:"drain_rate"`
- Category string `yaml:"category"`
Group string `yaml:"group"`
Effects TechEffects `yaml:"effects"`
}