Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit bfcdb2e

Browse files
author
Redmoogle
authored
gets rid of unused variable on techwebs (#15232)
* nukes export price * Remove debug proc
1 parent cbd0c58 commit bfcdb2e

3 files changed

Lines changed: 0 additions & 147 deletions

File tree

code/modules/research/techweb/_techweb_node.dm

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
var/list/unlock_ids = list() //CALCULATED FROM OTHER NODE'S PREREQUISITES. Assoc list id = TRUE.
1414
var/list/boost_item_paths = list() //Associative list, path = list(point type = point_value).
1515
var/autounlock_by_boost = TRUE //boosting this will autounlock this node.
16-
var/export_price = 0 //Cargo export price.
1716
var/list/research_costs = list() //Point cost to research. type = amount
1817
var/category = "Misc" //Category
1918
var/ui_x = 805 // It's location - override this in techweb_layout.dm
@@ -48,7 +47,6 @@
4847
VARSET_TO_LIST(., assoc_list_strip_value(unlock_ids))
4948
VARSET_TO_LIST(., boost_item_paths)
5049
VARSET_TO_LIST(., autounlock_by_boost)
51-
VARSET_TO_LIST(., export_price)
5250
VARSET_TO_LIST(., research_costs)
5351
VARSET_TO_LIST(., category)
5452

@@ -64,7 +62,6 @@
6462
VARSET_FROM_LIST(input, unlock_ids)
6563
VARSET_FROM_LIST(input, boost_item_paths)
6664
VARSET_FROM_LIST(input, autounlock_by_boost)
67-
VARSET_FROM_LIST(input, export_price)
6865
VARSET_FROM_LIST(input, research_costs)
6966
VARSET_FROM_LIST(input, category)
7067
Initialize()

0 commit comments

Comments
 (0)