diff --git a/code/modules/blob2/overmind/powers.dm b/code/modules/blob2/overmind/powers.dm index 360bfbb10b..a93915ad36 100644 --- a/code/modules/blob2/overmind/powers.dm +++ b/code/modules/blob2/overmind/powers.dm @@ -53,7 +53,7 @@ set desc = "Create a resource tower which will generate resources for you." if(!blob_type.can_build_resources) - return FALSE + return TRUE createSpecial(40, blob_type.resource_type, 4, 1) @@ -63,7 +63,7 @@ set desc = "Automatically places a resource tower near a node or your core, at a sufficent distance." if(!blob_type.can_build_resources) - return FALSE + return TRUE var/obj/structure/blob/B = null var/list/potential_blobs = blobs.Copy() @@ -94,7 +94,7 @@ set desc = "Create a spore tower that will spawn spores to harass your enemies." if(!blob_type.can_build_factories) - return FALSE + return TRUE createSpecial(60, blob_type.factory_type, 7, 1) @@ -104,7 +104,7 @@ set desc = "Automatically places a resource tower near a node or your core, at a sufficent distance." if(!blob_type.can_build_factories) - return FALSE + return TRUE var/obj/structure/blob/B = null var/list/potential_blobs = blobs.Copy() @@ -136,7 +136,7 @@ set desc = "Create a node, which will expand blobs around it, and power nearby factory and resource blobs." if(!blob_type.can_build_nodes) - return FALSE + return TRUE createSpecial(100, blob_type.node_type, 5, 0) @@ -146,7 +146,7 @@ set desc = "Automatically places a node blob at a sufficent distance." if(!blob_type.can_build_nodes) - return FALSE + return TRUE var/obj/structure/blob/B = null var/list/potential_blobs = blobs.Copy()