This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- Minecraft Crash Report ---- | |
// Who set us up the TNT? | |
Time: 2023-09-06 22:28:55 | |
Description: Initializing game | |
java.lang.RuntimeException: null | |
at net.minecraftforge.registries.GameData.postRegisterEvents(GameData.java:364) ~[forge-1.20.1-47.1.25_mapped_parchment_2023.07.02-1.20.1-recomp.jar:?] {re:classloading} | |
at net.minecraftforge.common.ForgeStatesProvider.lambda$new$4(ForgeStatesProvider.java:25) ~[forge-1.20.1-47.1.25_mapped_parchment_2023.07.02-1.20.1-recomp.jar:?] {re:classloading} | |
at net.minecraftforge.fml.ModLoader.handleInlineTransition(ModLoader.java:217) ~[core-47.1.40.jar:47.1] {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id 'idea' | |
id 'maven-publish' | |
id 'net.minecraftforge.gradle' version '5.1.+' | |
id 'org.parchmentmc.librarian.forgegradle' version '1.+' | |
} | |
version = "${mod_version}-${forge_version}" | |
group = "${maven_group}.${mod_id}" | |
archivesBaseName = mod_id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{14ad203f-52cc-4110-90d6-d96e0f41b64d}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"profiles": { | |
"defaults": {}, | |
"list": [ | |
{ | |
"guid": "{fc16c689-9280-4e35-9908-91d7b03556f3}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="https://www.google.com/search" method="get"> | |
<input name="tbm" value="isch" type="hidden"> | |
<input name="q" size="35" type="text" placeholder="search"> | |
<input type="submit" value="search"> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Solar Array ----------- | |
Tier 1 | |
1 x Solar Array Controller (tier 1) | |
4 null modifier | |
16 structure frame block (any tier) | |
9 solar cell (any type) | |
Tier 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function calculateOddsDecimal(a, b) { | |
return (a / b); | |
} | |
function calculateOddsPercent(a, b) { | |
return (calculateOddsDecimal(a, b) * 100).toFixed(2); | |
} | |
function fractionToDecimal(fraction) { | |
let fractional = fraction.split('/'); |