I was looking to experiment with reworking the economy, and I came across this :
in file "00_defines"
and this line is preventing me from doing what i want to do (setting a free floating market price for goods)
I have the entire directory loaded in my IDE and i have tried searching for references to: "PRICE_RANGE" variable and the only instances i can find are in interface.yml files
what im looking for is where this value gets consumed so i can work on the actual economic calculations of the game and unbound the range.
Code:
PRICE_RANGE = 0.75 # min price of a good is base * (1 - PRICE_RANGE), Max price is base * (1 + PRICE_RANGE), PRICE_RANGE is locked to [0-1]
in file "00_defines"
and this line is preventing me from doing what i want to do (setting a free floating market price for goods)
I have the entire directory loaded in my IDE and i have tried searching for references to: "PRICE_RANGE" variable and the only instances i can find are in interface.yml files
what im looking for is where this value gets consumed so i can work on the actual economic calculations of the game and unbound the range.