-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changes to malachite and sideways catalyst
sideways catalyst is now craftable peanut and peanut block have new texture (subject to change) malachite crystals can be acquired by smelting malachite ore malachite ore is now much more rare
- Loading branch information
Showing
34 changed files
with
163 additions
and
92 deletions.
There are no files selected for viewing
This file contains 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
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/50ed7adc7c0cf799be0c215b222a6d993616dd1f
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
// 1.19.4 2023-12-23T13:50:03.0130564 Item Models: thesideways | ||
// 1.19.4 2023-12-24T14:01:46.5765935 Item Models: thesideways | ||
901625fa096c864407b76b94d7720b82b55c6c3d assets/thesideways/models/item/luminite_shard.json | ||
09f98a1b8d1c6d59f83db4553f9f8c5c7a9497db assets/thesideways/models/item/malachite_crystal.json | ||
29e4d8ed33d1d56e6e5d390ae0b8b8d064eeaa08 assets/thesideways/models/item/nutroot_sapling.json | ||
95a99734b982b8197e65491e2b5901a8a41974d4 assets/thesideways/models/item/peanut.json | ||
604704bd3153e799487a3bdfc7e8416690ebe921 assets/thesideways/models/item/peanut_essence.json | ||
14cb58c1df7f0cf8fe8d8a5697a62a1b620b917c assets/thesideways/models/item/peanut_juice.json | ||
3644d7c303f1712526aca20d7c54781da15db3ea assets/thesideways/models/item/raw_luminite.json | ||
bb52296dee83e3220a7e0b54d95708a8a1ece364 assets/thesideways/models/item/sideways_catalyst.json | ||
ac4d550b04ae7a6ad370778f119416c1600d526c assets/thesideways/models/item/sideways_catalyst.json |
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/59eb3dbb5f86130e09b3c62d89b9525ee01cf52d
This file contains 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
2 changes: 1 addition & 1 deletion
2
src/generated/resources/assets/thesideways/models/item/sideways_catalyst.json
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"placement": [ | ||
{ | ||
"type": "minecraft:count", | ||
"count": 8 | ||
"count": 2 | ||
}, | ||
{ | ||
"type": "minecraft:in_square" | ||
|
This file contains 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
38 changes: 38 additions & 0 deletions
38
src/main/java/dev/bonnie/thesideways/TheSidewaysEventSubscriber.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package dev.bonnie.thesideways; | ||
|
||
import dev.bonnie.thesideways.block.ModBlocks; | ||
import net.minecraft.core.BlockPos; | ||
import net.minecraft.world.level.block.state.BlockState; | ||
import net.minecraftforge.event.TickEvent; | ||
import net.minecraftforge.eventbus.api.SubscribeEvent; | ||
import net.minecraftforge.fml.common.Mod; | ||
import net.minecraftforge.server.ServerLifecycleHooks; | ||
import net.minecraft.server.MinecraftServer; | ||
import net.minecraft.world.level.Level; | ||
import net.minecraft.world.level.block.Blocks; | ||
import net.minecraft.world.level.block.Block; | ||
import net.minecraft.world.level.block.state.BlockState; | ||
import net.minecraft.world.level.chunk.ChunkAccess; | ||
import net.minecraft.server.MinecraftServer; | ||
import net.minecraft.world.level.Level; | ||
import net.minecraft.world.level.chunk.LevelChunk; | ||
import net.minecraft.world.level.block.state.BlockState; | ||
import net.minecraft.core.BlockPos; | ||
import net.minecraftforge.event.TickEvent; | ||
import net.minecraftforge.eventbus.api.SubscribeEvent; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = TheSideways.MOD_ID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class TheSidewaysEventSubscriber { | ||
private static final int TRANSFORM_CHANCE = 20; // Adjust this probability (out of 100) | ||
|
||
@SubscribeEvent | ||
public static void onServerTick(TickEvent.ServerTickEvent event) { | ||
if (event.phase == TickEvent.Phase.END) { | ||
// i cant figure it out | ||
} | ||
} | ||
} | ||
|
||
|
||
|
This file contains 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
2 changes: 0 additions & 2 deletions
2
src/main/java/dev/bonnie/thesideways/block/custom/portal/SidewaysPortalSoundUtil.java
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
src/main/java/dev/bonnie/thesideways/world/feature/SidewaysLakeFeature.java
This file contains 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
2 changes: 1 addition & 1 deletion
2
...main/java/dev/bonnie/thesideways/world/feature/builder/SidewaysPlacedFeatureBuilders.java
This file contains 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
1 change: 0 additions & 1 deletion
1
src/main/java/dev/bonnie/thesideways/world/placementmodifier/ConfigSerializationUtil.java
This file contains 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
Oops, something went wrong.