Age | Commit message (Collapse) | Author |
|
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
|
|
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
|
|
|
|
git and diff tools will complain if text file does not end with a newline.
Fixed all text files in the repository with Linux bash shell:
```sh
git ls-files -z |
while IFS= read -rd '' f; do
mime="$(file --brief --mime "$f")";
if [ -z "${mime##text/*}" ]; then
tail -c1 "$f" |
read -r _ || printf '\n' >>"$f";
fi;
done
```
|
|
* Rework clientside pollution
* Pollution rework
* removed debug
|
|
|
|
allows for more textures to be added for casing, with extra byte of data for paging.
Just change the value of mTexturePage at the same time you change mMachineBlock.
|
|
This reverts commit 3274784db6f35e858ee408e1e35aac3a2afe1213.
|
|
allows for more textures to be added for casing, with extra byte of data for paging.
Just change the value of mTexturePage at the same time you change mMachineBlock.
|
|
|
|
|
|
|
|
|