-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: Working complex economy case!
feature: Asset-needs system now has a sidecar purpose of tallying up the totals of all resources in existence feature: Asset-needs system now also emits faction assets to logs to facilitate graphing feature: Allowed the specification of normalization basis to Need fetchers - can use '1' to denormalize to raw values. balance: Buy offers clamped to never request more than 75% of global resource total fix: Split worker regen into 3 steps (hunger/fed/usable) to prevent weird explosive growth bugs tweak: Reordered callsig checks in CIs to be able to log the source requester tweak: General value tweaks to get the economy in a better place
- Loading branch information
jmalek
committed
Nov 16, 2024
1 parent
611c040
commit 890b753
Showing
20 changed files
with
363 additions
and
140 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"/obj/food": { | ||
"food_generic": 0.01 | ||
"food_generic": 0.001 | ||
}, | ||
"/obj/decor": { | ||
"prestige": 2 | ||
"prestige": 0.00001 | ||
}, | ||
"/obj/ore": { | ||
"ore": 0.01 | ||
"ore": 0.001 | ||
}, | ||
"/obj/steel_bar": { | ||
"steel": 1 | ||
"steel": 0.01 | ||
} | ||
} |
Oops, something went wrong.