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,20 +1,32 @@
|
|||||||
[General]
|
[General]
|
||||||
|
AutoCloseConsole=false
|
||||||
AutomaticJava=true
|
AutomaticJava=true
|
||||||
|
CloseAfterLaunch=false
|
||||||
ConfigVersion=1.2
|
ConfigVersion=1.2
|
||||||
|
CustomGLFWPath=
|
||||||
|
CustomOpenALPath=
|
||||||
|
EnableFeralGamemode=false
|
||||||
|
EnableMangoHud=false
|
||||||
|
Env=@Variant(\0\0\0\b\0\0\0\0)
|
||||||
ExportAuthor=
|
ExportAuthor=
|
||||||
ExportName=
|
ExportName=
|
||||||
ExportOptionalFiles=true
|
ExportOptionalFiles=true
|
||||||
ExportSummary=
|
ExportSummary=
|
||||||
ExportVersion=1.0.0
|
ExportVersion=1.0.0
|
||||||
IgnoreJavaCompatibility=false
|
IgnoreJavaCompatibility=false
|
||||||
|
InstanceAccountId=
|
||||||
InstanceType=OneSix
|
InstanceType=OneSix
|
||||||
JavaArchitecture=64
|
JavaArchitecture=64
|
||||||
JavaPath=C:/Users/Keybl/Documents/PrismLauncher-Windows-MinGW-w64-Portable-9.4/java/java-runtime-gamma/bin/javaw.exe
|
JavaPath=/home/qb/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/java/java-runtime-gamma/bin/java
|
||||||
JavaRealArchitecture=amd64
|
JavaRealArchitecture=amd64
|
||||||
JavaSignature=2c94189bf2f770bbfd88f8047fdcb69e492a67b6
|
JavaSignature=7b784ed89ddd21859884bcf0fad44d920fc92286
|
||||||
JavaVendor=Microsoft
|
JavaVendor=Microsoft
|
||||||
JavaVersion=17.0.8
|
JavaVersion=17.0.8
|
||||||
JoinServerOnLaunch=false
|
JoinServerOnLaunch=false
|
||||||
|
JoinServerOnLaunchAddress=
|
||||||
|
JoinWorldOnLaunch=
|
||||||
|
JvmArgs=
|
||||||
|
LaunchMaximized=false
|
||||||
LogPrePostOutput=true
|
LogPrePostOutput=true
|
||||||
ManagedPack=false
|
ManagedPack=false
|
||||||
ManagedPackID=
|
ManagedPackID=
|
||||||
@ -24,6 +36,9 @@ ManagedPackVersionID=
|
|||||||
ManagedPackVersionName=
|
ManagedPackVersionName=
|
||||||
MaxMemAlloc=16384
|
MaxMemAlloc=16384
|
||||||
MinMemAlloc=512
|
MinMemAlloc=512
|
||||||
|
MinecraftWinHeight=480
|
||||||
|
MinecraftWinWidth=854
|
||||||
|
OnlineFixes=false
|
||||||
OverrideCommands=false
|
OverrideCommands=false
|
||||||
OverrideConsole=false
|
OverrideConsole=false
|
||||||
OverrideEnv=false
|
OverrideEnv=false
|
||||||
@ -37,44 +52,29 @@ OverrideNativeWorkarounds=false
|
|||||||
OverridePerformance=false
|
OverridePerformance=false
|
||||||
OverrideWindow=false
|
OverrideWindow=false
|
||||||
PermGen=128
|
PermGen=128
|
||||||
Profiler=
|
|
||||||
UseAccountForInstance=false
|
|
||||||
iconKey=default
|
|
||||||
lastLaunchTime=1747044152890
|
|
||||||
lastTimePlayed=5516
|
|
||||||
linkedInstances=[]
|
|
||||||
name=1.20.1 FearFactory
|
|
||||||
notes=
|
|
||||||
totalTimePlayed=44988
|
|
||||||
AutoCloseConsole=false
|
|
||||||
CloseAfterLaunch=false
|
|
||||||
CustomGLFWPath=
|
|
||||||
CustomOpenALPath=
|
|
||||||
EnableFeralGamemode=false
|
|
||||||
EnableMangoHud=false
|
|
||||||
Env=@Variant(\0\0\0\b\0\0\0\0)
|
|
||||||
InstanceAccountId=
|
|
||||||
JoinServerOnLaunchAddress=
|
|
||||||
JoinWorldOnLaunch=
|
|
||||||
JvmArgs=
|
|
||||||
LaunchMaximized=false
|
|
||||||
MinecraftWinHeight=480
|
|
||||||
MinecraftWinWidth=854
|
|
||||||
OnlineFixes=false
|
|
||||||
PostExitCommand=
|
PostExitCommand=
|
||||||
PreLaunchCommand=
|
PreLaunchCommand=
|
||||||
|
Profiler=
|
||||||
QuitAfterGameStop=false
|
QuitAfterGameStop=false
|
||||||
RecordGameTime=true
|
RecordGameTime=true
|
||||||
ShowConsole=false
|
ShowConsole=false
|
||||||
ShowConsoleOnError=true
|
ShowConsoleOnError=true
|
||||||
ShowGameTime=true
|
ShowGameTime=true
|
||||||
|
UseAccountForInstance=false
|
||||||
UseDiscreteGpu=false
|
UseDiscreteGpu=false
|
||||||
UseNativeGLFW=false
|
UseNativeGLFW=false
|
||||||
UseNativeOpenAL=false
|
UseNativeOpenAL=false
|
||||||
UseZink=false
|
UseZink=false
|
||||||
WrapperCommand=
|
WrapperCommand=
|
||||||
|
iconKey=default
|
||||||
|
lastLaunchTime=1747104750493
|
||||||
|
lastTimePlayed=123
|
||||||
|
linkedInstances=[]
|
||||||
|
name=1.20.1 FearFactory
|
||||||
|
notes=
|
||||||
|
totalTimePlayed=45111
|
||||||
|
|
||||||
[UI]
|
[UI]
|
||||||
mods_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\x1\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\v\x80\a\0\0\0\x4\0\0\0\a\0\0\0\x64\0\0\0\b\0\0\0\x64\0\0\0\n\0\0\0\x64\0\0\0\t\0\0\0\x64\0\0\x3\x39\0\0\0\v\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\v\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\xe1\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0)
|
mods_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\x1\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\v\x80\a\0\0\0\x4\0\0\0\a\0\0\0\x64\0\0\0\t\0\0\0\x64\0\0\0\b\0\0\0\x64\0\0\0\n\0\0\0\x64\0\0\x3\x39\0\0\0\v\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\v\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\xe1\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0)
|
||||||
resourcepacks_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x2X\0\0\0\x6\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x6\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0)
|
resourcepacks_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x2X\0\0\0\x6\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x6\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0)
|
||||||
shaderpacks_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\x90\0\0\0\x4\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0)
|
shaderpacks_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\x90\0\0\0\x4\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"debug": false,
|
"debug": false,
|
||||||
"trim_registry_mismatch_message": "<EFBFBD>b[All The Trims] <EFBFBD>cTrim Registry Mismatch. <EFBFBD>rPlease ensure that the client and server have the same mods with the same versions."
|
"trim_registry_mismatch_message": "§b[All The Trims] §cTrim Registry Mismatch. §rPlease ensure that the client and server have the same mods with the same versions."
|
||||||
}
|
}
|
@ -8,7 +8,7 @@
|
|||||||
enableCuttingBoardDeploying = true
|
enableCuttingBoardDeploying = true
|
||||||
#.
|
#.
|
||||||
#List of Block Entities that can be boosted when placed on Blaze Stove
|
#List of Block Entities that can be boosted when placed on Blaze Stove
|
||||||
boostingCookerList = ["farmersdelight:cooking_pot", "farmersdelight:skillet"]
|
boostingCookerList = ["farmersdelight:cooking_pot", "farmersdelight:skillet", "miners_delight:copper_pot"]
|
||||||
|
|
||||||
#.
|
#.
|
||||||
#Config for Integration with other mods
|
#Config for Integration with other mods
|
||||||
|
@ -1 +1 @@
|
|||||||
{"v":1,"s":"4ad5a6343f108c5f62e8926945582e75b23a3cc71bfe6682509b9d653f37831bd08ff4711e0022c61fd5a9a41375a2e2981e8bce658fb7e82595f1c2bfef50e6","u":"7004904bd974233150270e07603076ce06abd0f303b79087eb2dea802a977082a9f6606ce49f4855a8ca1b29a6eea7e7b16f179b70eb9390eea28aa6b1fad3d4","p":"804a9be946ff25856bd4fc179420becef0cf4729ac81ec6160da3402cdbb20bb53b8eee67168ac6ced31a7ab8047ce2253b9f012e79c029675a40aba73f0333a","t":1747028273}
|
{"v":1,"s":"e55d22b95ffc337043c53aaacd2afbb598a8ec056c9603fd4d6dd9cf0b3c0c155765e4b0a4e1b670a19f4be08967a18e40807bac21f02be0e36b413b48c0f994","u":"5d355d6f4655d6cfb39de5fa395b4c40f735eeb6cc140f108be42d1474c294137d407a6af4f77671e19a4debbac659d55f06549bbba369d1d997e01797fbe277","p":"4609c01c390769b047a61ee093c28916ec02a40a19d8a224c5f666a3703adb9eb6fb23178aaf0a668dd3061cd245e8e701e8f2aac115edf7e7b9172e42678c5c","t":1747104776}
|
@ -3,7 +3,7 @@ backend = "DEFAULT"
|
|||||||
#Enable or disable instance update limiting with distance.
|
#Enable or disable instance update limiting with distance.
|
||||||
limitUpdates = true
|
limitUpdates = true
|
||||||
#The number of worker threads to use. Set to -1 to let Flywheel decide. Set to 0 to disable parallelism. Requires a game restart to take effect.
|
#The number of worker threads to use. Set to -1 to let Flywheel decide. Set to 0 to disable parallelism. Requires a game restart to take effect.
|
||||||
#Range: -1 ~ 16
|
#Range: -1 ~ 12
|
||||||
workerThreads = -1
|
workerThreads = -1
|
||||||
|
|
||||||
#Config options for Flywheel's built-in backends.
|
#Config options for Flywheel's built-in backends.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#This file stores configuration options for Iris, such as the currently active shaderpack
|
#This file stores configuration options for Iris, such as the currently active shaderpack
|
||||||
#Mon May 12 03:56:09 CDT 2025
|
#Mon May 12 21:52:56 CDT 2025
|
||||||
colorSpace=SRGB
|
colorSpace=SRGB
|
||||||
disableUpdateMessage=false
|
disableUpdateMessage=false
|
||||||
enableDebugOptions=false
|
enableDebugOptions=false
|
||||||
|
BIN
1.20.1-FearFactoryTest/minecraft/icon.png
(Stored with Git LFS)
BIN
1.20.1-FearFactoryTest/minecraft/icon.png
(Stored with Git LFS)
Binary file not shown.
@ -1,16 +0,0 @@
|
|||||||
filename = 'tears_of_despair-2.0-forge-1.20.1.jar'
|
|
||||||
name = 'Tears of Despiar Nightmare Fuel'
|
|
||||||
side = 'both'
|
|
||||||
x-prismlauncher-loaders = [ 'forge' ]
|
|
||||||
x-prismlauncher-mc-versions = [ '1.20.1' ]
|
|
||||||
x-prismlauncher-release-type = 'beta'
|
|
||||||
|
|
||||||
[download]
|
|
||||||
hash = 'f254d65437997603848b188096066a80ce414e6fe67772eda21d0aaeff2ff5910d0e0e1249d18487e76dc832877a92bc87adb86c14d168fda5ef32b8023b5997'
|
|
||||||
hash-format = 'sha512'
|
|
||||||
mode = 'url'
|
|
||||||
url = 'https://cdn.modrinth.com/data/khZrj89W/versions/NVTg2utV/tears_of_despair-2.0-forge-1.20.1.jar'
|
|
||||||
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = 'khZrj89W'
|
|
||||||
version = 'NVTg2utV'
|
|
BIN
1.20.1-FearFactoryTest/minecraft/mods/EBE-1.20-1.20.1-0.9.1B.jar
(Stored with Git LFS)
BIN
1.20.1-FearFactoryTest/minecraft/mods/EBE-1.20-1.20.1-0.9.1B.jar
(Stored with Git LFS)
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
#Mon May 12 04:10:57 CDT 2025
|
#Mon May 12 21:52:55 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