1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 06:13:36 +08:00

reformat README and place them at root of each MOD

This commit is contained in:
2022-09-11 09:53:02 +08:00
parent 78e5ba4266
commit 7ff9a48cf6
9 changed files with 37 additions and 29 deletions

View File

@@ -24,6 +24,6 @@
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="del /F /Q package\$(ProjectName)-$(Version).zip&#xA;zip -9 -j package/$(ProjectName)-$(Version).zip $(TargetPath) package/icon.png package/manifest.json package/README.md" />
<Exec Command="del /F /Q package\$(ProjectName)-$(Version).zip&#xA;zip -9 -j package/$(ProjectName)-$(Version).zip $(TargetPath) package/icon.png package/manifest.json README.md" />
</Target>
</Project>

15
Dustbin/README.md Normal file
View File

@@ -0,0 +1,15 @@
## Dustbin
### Storages can abandon incoming items while capacity limited to zero
* Conditions to be dustbin: Storages with capacity limited to zero at top of stacks, and empty in 1st cell.
* Items sent into dustbins are removed immediately.
* Can get sands from abandoned items (with factors configurable):
* Get 10/100 sands from each silicon/fractal silicon ore
* Get 1 sand from any other normal item but fluid
* Known bugs
* Stack 1 more storage up on a zero limited one and remove it will cause dustbin stop working. Just put somethings
in and take them out to make the dustbin working again.
This is caused by a logic bug in original code where faulty set `lastFullItem` field of `StorageComponent` for
empty storages.

View File

@@ -1,12 +0,0 @@
## Dustbin
### Storages with capacity limited to zero act like dustbins(abandon incoming items)
* Conditions to become dustbin: Storages with capacity limited to zero at top of storage stacks with nothing in 1st cell.
* Items sent into dustbin are removed immediately.
* Can get sands from abandoned items (with factors configurable):
* Get 100 sands from each fractal silicon ore
* Get 10 sands from each silicon ore
* Get nothing from fluids
* Get 1 sand from any other normal item
* Known bug: stack 1 more storage up on a zero limited one and remove it will cause dustbin stop working. Just put somethings in and take them out to make the dustbin working again.