diff --git a/ModularTegustation/fishing/code/fish/freshwater_fish.dm b/ModularTegustation/fishing/code/fish/freshwater_fish.dm index 085a83484181..0a8b95bbdfd2 100644 --- a/ModularTegustation/fishing/code/fish/freshwater_fish.dm +++ b/ModularTegustation/fishing/code/fish/freshwater_fish.dm @@ -45,8 +45,6 @@ name = "cory catfish" desc = "A catfish has about 100,000 taste buds, and their bodies are covered with them to help detect chemicals present in the water and also to respond to touch." icon_state = "catfish" - dedicated_in_aquarium_icon_state = "fish_greyscale" - aquarium_vc_color = "#907420" average_size = 100 average_weight = 2000 diff --git a/ModularTegustation/fishing/code/fish/saltwater_fish.dm b/ModularTegustation/fishing/code/fish/saltwater_fish.dm index c1dbb8c49ebf..8affa3741af7 100644 --- a/ModularTegustation/fishing/code/fish/saltwater_fish.dm +++ b/ModularTegustation/fishing/code/fish/saltwater_fish.dm @@ -32,7 +32,6 @@ name = "cardinalfish" desc = "Cardinalfish are often found near sea urchins, where the fish hide when threatened." icon_state = "cardinalfish" - dedicated_in_aquarium_icon_state = "fish_greyscale" average_size = 30 average_weight = 500 stable_population = 4 @@ -41,8 +40,6 @@ name = "green chromis" desc = "The Chromis can vary in color from blue to green depending on the lighting and distance from the lights." icon_state = "greenchromis" - dedicated_in_aquarium_icon_state = "fish_greyscale" - aquarium_vc_color = "#00ff00" average_size = 30 average_weight = 500 stable_population = 5 diff --git a/code/datums/components/aquarium.dm b/code/datums/components/aquarium.dm index 29a0d49c3197..9a1289913c4d 100644 --- a/code/datums/components/aquarium.dm +++ b/code/datums/components/aquarium.dm @@ -95,6 +95,7 @@ aquarium_vc_color = fish.aquarium_vc_color if(fish.dedicated_in_aquarium_icon_state) + icon = 'icons/obj/aquarium.dmi' icon_state = fish.dedicated_in_aquarium_icon_state base_transform = matrix() else