diff --git a/game/data/building_data.py b/game/data/building_data.py
index c3bd62d9..9b0dd2a4 100644
--- a/game/data/building_data.py
+++ b/game/data/building_data.py
@@ -11,7 +11,7 @@ DEFAULT_AVAILABLE_BUILDINGS = [
"derrick",
]
-WW2_FREE = ["fuel", "ware", "fob"]
+WW2_FREE = ["fuel", "ware"]
WW2_GERMANY_BUILDINGS = [
"fuel",
"ww2bunker",
diff --git a/resources/ui/ground_assets/fob_blue_alive.svg b/resources/ui/ground_assets/fob_blue_alive.svg
index 01eed590..e78bbd81 100644
--- a/resources/ui/ground_assets/fob_blue_alive.svg
+++ b/resources/ui/ground_assets/fob_blue_alive.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/ui/ground_assets/fob_blue_damaged.svg b/resources/ui/ground_assets/fob_blue_damaged.svg
index e9dacd53..c93ec0e6 100644
--- a/resources/ui/ground_assets/fob_blue_damaged.svg
+++ b/resources/ui/ground_assets/fob_blue_damaged.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/ui/ground_assets/fob_blue_destroyed.svg b/resources/ui/ground_assets/fob_blue_destroyed.svg
index f9b1e2a0..4cc0764f 100644
--- a/resources/ui/ground_assets/fob_blue_destroyed.svg
+++ b/resources/ui/ground_assets/fob_blue_destroyed.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/ui/ground_assets/fob_red_alive.svg b/resources/ui/ground_assets/fob_red_alive.svg
index 68ee8a5e..f6e1e238 100644
--- a/resources/ui/ground_assets/fob_red_alive.svg
+++ b/resources/ui/ground_assets/fob_red_alive.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/ui/ground_assets/fob_red_damaged.svg b/resources/ui/ground_assets/fob_red_damaged.svg
index bfb93b9a..72ff98f7 100644
--- a/resources/ui/ground_assets/fob_red_damaged.svg
+++ b/resources/ui/ground_assets/fob_red_damaged.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/ui/ground_assets/fob_red_destroyed.svg b/resources/ui/ground_assets/fob_red_destroyed.svg
index 4b150097..0a00635a 100644
--- a/resources/ui/ground_assets/fob_red_destroyed.svg
+++ b/resources/ui/ground_assets/fob_red_destroyed.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/ui/map/map.js b/resources/ui/map/map.js
index 5ef858a3..82369285 100644
--- a/resources/ui/map/map.js
+++ b/resources/ui/map/map.js
@@ -16,7 +16,6 @@ const Categories = Object.freeze([
"ewr",
"factory",
"farp",
- "fob",
"fuel",
"missile",
"oil",
@@ -42,7 +41,7 @@ class CpIcons {
this.icons[player][state] = {
airfield: this.loadIcon("airfield", player, state),
cv: this.loadIcon("cv", player, state),
- fob: this.loadLegacyIcon(player),
+ fob: this.loadIcon("fob", player, state),
lha: this.loadIcon("lha", player, state),
offmap: this.loadLegacyIcon(player),
};