Draft
Conversation
Owner
doesn't "fix" it... just completes it |
Owner
Material tiers, Spools, spools added to tiers, and connectors Material tiers like ArrayList<WireMaterial> baseTier1 = new ArrayList<>();
ArrayList<WireMaterial> baseTier2 = new ArrayList<>();
ArrayList<WireMaterial> ccaTier = new ArrayList<>();
ArrayList<WireMaterial> allTier = new ArrayList<>();spools being wire materials assigned to a tier WireMaterial copper = WireMaterials.getOrRegister("Copper", 0xE77C56);
WireMaterial gold = WireMaterials.getOrRegister("Gold", 0xFDF55F);and connectors with their wire tier, color, size, and throughput registerTier("Copper", 2048, 1, 0xC55E4B, baseTier1);
registerTier("Gold", 8192, 1, 0xf7bf31, baseTier2); |
Owner
|
Oops forgot adding materials to tiers baseTier1.add(electrum);
baseTier2.add(electrum);
ccaTier.add(electrum);Basically just a kubejs function for each of these |
Author
You marked it as an issue—that line just makes GitHub automatically close it once this thing gets merged. |
Owner
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Fixes: #9 (once it's done)
I don't know how to add tags—but this is a draft. Please don't merge this yet. kthx
TODO: