Age | Commit message (Collapse) | Author |
|
|
|
|
|
remove Plasma Pie we have Neutronium for it.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This reverts commit 6427be7b6d30811e979b346d5477daf0c84e9334.
|
|
adding Drilling Fluid
added a few Textures from Gt 5.09
|
|
|
|
Script to fix
```Bash
list=$(find ./ -type f -name \*.png -exec grep -l BM6 {} \;)
for v in $list
do
f=$(echo $v | sed -e 's/\(.*\)\.png/\1/g')
mv "$f.png" "$f.bmp"
convert "$f.bmp" "$f.png"
find ./ -type f -name "$f.bmp" -delete
done
```
|
|
Wet Concrete was lacking cell support as it was a 'molten' fluid type.
This patch adds a new type 'wet', which replaces 'molten'
for Concrete. This means with this patch you can either use
the canner with concrete dust to fill the cell, or the fluid
canning machine to input or output Wet Concrete.
Ideally Wet Concrete would be separate from Concrete as one is solid and
the other fluid, but they were kept together for compatibility with
existing recipes. 1 Concrete Cell = 144 Wet Concrete = Concrete Block
'Wet' fluid type can be used anytime you'd like both solid and fluid
cell support, as these were usually separate for good reasons.
Mostly to prevent the awkward ratio above.
|
|
|