Merge pull request #7500 from Citadel-Station-13/kevinz000-patch-7

fixes techweb node default cost being an int instead of a list
This commit is contained in:
deathride58
2018-08-26 21:25:09 -04:00
committed by GitHub

View File

@@ -15,7 +15,7 @@
var/list/boost_item_paths = list() //Associative list, path = list(point type = point_value). var/list/boost_item_paths = list() //Associative list, path = list(point type = point_value).
var/autounlock_by_boost = TRUE //boosting this will autounlock this node. var/autounlock_by_boost = TRUE //boosting this will autounlock this node.
var/export_price = 0 //Cargo export price. var/export_price = 0 //Cargo export price.
var/list/research_costs = 0 //Point cost to research. type = amount var/list/research_costs = list() //Point cost to research. type = amount
var/category = "Misc" //Category var/category = "Misc" //Category
/datum/techweb_node/proc/get_price(datum/techweb/host) /datum/techweb_node/proc/get_price(datum/techweb/host)