removed EBE & fixed noisy files & updated .gitignore
git RM cached several files such as instance.cfg which would constantly show up despite being in git ignore. and git rm --cache filename < git add -f filename < reverses caching Removed EBE as it depends on toad lib (enhanced block entities)
This commit is contained in:
9
.gitattributes
vendored
9
.gitattributes
vendored
@ -34,12 +34,9 @@
|
|||||||
*.dat filter=lfs diff=lfs merge=lfs -text
|
*.dat filter=lfs diff=lfs merge=lfs -text
|
||||||
*.dat_old filter=lfs diff=lfs merge=lfs -text
|
*.dat_old filter=lfs diff=lfs merge=lfs -text
|
||||||
*.disabled filter=lfs diff=lfs merge=lfs -text
|
*.disabled filter=lfs diff=lfs merge=lfs -text
|
||||||
|
|
||||||
# thanks Gregtech new horizons!
|
# thanks Gregtech new horizons!
|
||||||
* text eol=lf
|
* text eol=lf
|
||||||
|
|
||||||
*.[jJ][aA][rR] binary
|
*.[jJ][aA][rR] binary
|
||||||
|
|
||||||
*.[pP][nN][gG] binary
|
*.[pP][nN][gG] binary
|
||||||
*.[jJ][pP][gG] binary
|
*.[jJ][pP][gG] binary
|
||||||
*.[jJ][pP][eE][gG] binary
|
*.[jJ][pP][eE][gG] binary
|
||||||
@ -50,7 +47,6 @@
|
|||||||
*.[sS][vV][gG] text
|
*.[sS][vV][gG] text
|
||||||
*.[eE][pP][sS] binary
|
*.[eE][pP][sS] binary
|
||||||
*.[xX][cC][fF] binary
|
*.[xX][cC][fF] binary
|
||||||
|
|
||||||
*.[kK][aA][rR] binary
|
*.[kK][aA][rR] binary
|
||||||
*.[mM]4[aA] binary
|
*.[mM]4[aA] binary
|
||||||
*.[mM][iI][dD] binary
|
*.[mM][iI][dD] binary
|
||||||
@ -58,13 +54,11 @@
|
|||||||
*.[mM][pP]3 binary
|
*.[mM][pP]3 binary
|
||||||
*.[oO][gG][gG] binary
|
*.[oO][gG][gG] binary
|
||||||
*.[rR][aA] binary
|
*.[rR][aA] binary
|
||||||
|
|
||||||
*.7[zZ] binary
|
*.7[zZ] binary
|
||||||
*.[gG][zZ] binary
|
*.[gG][zZ] binary
|
||||||
*.[tT][aA][rR] binary
|
*.[tT][aA][rR] binary
|
||||||
*.[tT][gG][zZ] binary
|
*.[tT][gG][zZ] binary
|
||||||
*.[zZ][iI][pP] binary
|
*.[zZ][iI][pP] binary
|
||||||
|
|
||||||
*.[tT][cC][nN] binary
|
*.[tT][cC][nN] binary
|
||||||
*.[sS][oO] binary
|
*.[sS][oO] binary
|
||||||
*.[dD][lL][lL] binary
|
*.[dD][lL][lL] binary
|
||||||
@ -72,11 +66,8 @@
|
|||||||
*.[pP][sS][dD] binary
|
*.[pP][sS][dD] binary
|
||||||
*.[tT][tT][fF] binary
|
*.[tT][tT][fF] binary
|
||||||
*.[oO][tT][fF] binary
|
*.[oO][tT][fF] binary
|
||||||
|
|
||||||
*.[pP][aA][tT][cC][hH] -text
|
*.[pP][aA][tT][cC][hH] -text
|
||||||
|
|
||||||
*.[bB][aA][tT] text eol=crlf
|
*.[bB][aA][tT] text eol=crlf
|
||||||
*.[cC][mM][dD] text eol=crlf
|
*.[cC][mM][dD] text eol=crlf
|
||||||
*.[pP][sS]1 text eol=crlf
|
*.[pP][sS]1 text eol=crlf
|
||||||
|
|
||||||
*[aA][uU][tT][oO][gG][eE][nN][eE][rR][aA][tT][eE][dD]* binary
|
*[aA][uU][tT][oO][gG][eE][nN][eE][rR][aA][tT][eE][dD]* binary
|
||||||
|
9
.gitignore
vendored
9
.gitignore
vendored
@ -24,3 +24,12 @@
|
|||||||
1.20.1-FearFactoryTest/minecraft/mods/enhanced_boss_bars-1.20.1-1.0.0.jar
|
1.20.1-FearFactoryTest/minecraft/mods/enhanced_boss_bars-1.20.1-1.0.0.jar
|
||||||
1.20.1-FearFactoryTest/minecraft/mods/RenderScale-forge-1.20.1-1.0.jar
|
1.20.1-FearFactoryTest/minecraft/mods/RenderScale-forge-1.20.1-1.0.jar
|
||||||
1.20.1-FearFactoryTest/minecraft/mods/ToadLib-1.3.1-1.20-1.20.1.jar
|
1.20.1-FearFactoryTest/minecraft/mods/ToadLib-1.3.1-1.20-1.20.1.jar
|
||||||
|
1.20.1-FearFactoryTest/minecraft/mods/.index/tears-of-despair_nightmare_fuel.pw.toml
|
||||||
|
/1.20.1-FearFactoryTest/minecraft/mods/.index
|
||||||
|
1.20.1-FearFactoryTest/minecraft/config/embeddium-fingerprint.json
|
||||||
|
1.20.1-FearFactoryTest/minecraft/config/fabric/indigo-renderer.properties
|
||||||
|
1.20.1-FearFactoryTest/minecraft/config/flywheel-client.toml
|
||||||
|
1.20.1-FearFactoryTest/minecraft/config/allthetrims.json
|
||||||
|
1.20.1-FearFactoryTest/minecraft/config/oculus.properties
|
||||||
|
1.20.1-FearFactoryTest/minecraft/icon.png
|
||||||
|
1.20.1-FearFactoryTest/minecraft/config/fabric/indigo-renderer.properties
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
#Mon May 12 04:10:57 CDT 2025
|
|
||||||
shadowDistance=160.0
|
shadowDistance=160.0
|
||||||
SUN_ANGULAR_RADIUS=10.0
|
SUN_ANGULAR_RADIUS=10.0
|
||||||
STARS_INTENSITY=0.90
|
STARS_INTENSITY=0.90
|
||||||
|
Reference in New Issue
Block a user