Skip to content

Commit

Permalink
Hotfix 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsPilgaard committed Jul 28, 2020
1 parent a9c2584 commit 50caffa
Show file tree
Hide file tree
Showing 7 changed files with 499 additions and 636 deletions.
4 changes: 1 addition & 3 deletions MODLIST.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Enigmatica 6 - 0.2.2 Modlist
## Enigmatica 6 - 0.2.3 Modlist
- Abnormals-Core-1.16.1-v2.0.0
- Actually Useful Stonecutter-1.0.1 mc 1.16.1
- additional_lights-1.16.1-2.1.0
Expand Down Expand Up @@ -36,7 +36,6 @@
- Controlling-7.0.0.2
- CookingForBlockheads_1.16.1-9.0.0
- CosmeticArmorReworked-1.16.1-v1a
- craftingstation-4.0.0
- CraftingTweaks_1.16.1-12.0.4
- CTM-MC1.16.1-1.1.0.1
- culinaryconstruct-FORGE-1.16.1-3.0
Expand All @@ -59,7 +58,6 @@
- engineerstools-1.16.1-1.0.9-b2
- environmentalcreepers-forge-1.16.1-1.6.1
- extradisks-1.16.1-1.3
- extratags-2.1e
- FarmingForBlockheads_1.16.1-7.0.1
- FastFurnace-1.16.1-4.0.0
- FastLeafDecay-v23
Expand Down
9 changes: 3 additions & 6 deletions changelogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,19 @@

_Using Forge-1.16.1-32.0.75_ | _[Mod Updates](https://github.com/NillerMedDild/Enigmatica6/blob/master/changelogs/CHANGELOG_MODS_0.2.3.txt)_

**Mod Additions**

-

**Changes**

- Rats: Wild Rats no longer raid crops
- Rats: No longer dig holes

**Fixed Bugs**

-
- 0.2.2 - Server blows up on player login - Related to Crafting Station/Extra Tags [\#42](https://github.com/NillerMedDild/Enigmatica6/issues/42)

**Mod Removals**

-
- CraftingStation (Temporarily, due to a bug)
- Extra Tags (Temporarily, due to a bug)

## Enigmatica 6 v0.2.2

Expand Down
12 changes: 12 additions & 0 deletions changelogs/CHANGELOG_MODS_0.2.3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
=======================================
Enigmatica6 0.2.2 --> Enigmatica6 0.2.3
=======================================

Added:
- The Official Enigmatica Resource Pack

Removed:
- Crafting Station
- Extra Tags

Generated using [ChangelogGenerator 2.0.0-pre3](https://github.com/TheRandomLabs/ChangelogGenerator).
8 changes: 4 additions & 4 deletions kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ events.listen('recipes', function (event) {
shapelessRecipe('minecraft:flint', ['#forge:gravel', '#forge:gravel', '#forge:gravel']),
shapelessRecipe('simplefarming:cornbread', ['#forge:grain', '#forge:crops/corn', '#forge:grain']),
shapelessRecipe('minecraft:chest', ['#forge:chests/wooden']),
shapelessRecipe('minecraft:crafting_table', [
'craftingstation:crafting_station_slab',
'craftingstation:crafting_station_slab'
]),
// shapelessRecipe('minecraft:crafting_table', [
// 'craftingstation:crafting_station_slab',
// 'craftingstation:crafting_station_slab'
// ]),
// shapelessRecipe('simplefarming:fish_sandwich', [
// '#forge:bread',
// 'aquaculture:fish_fillet_cooked',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
events.listen('recipes', function (event) {
vanillaWoodTypes.forEach(function (woodType) {
event.recipes.minecraft.stonecutting(
item.of('carpetstairsmod:' + woodType + '_wood_floor', 24),
item.of('carpetstairsmod:' + woodType + '_wood_floor', 6),
'minecraft:' + woodType + '_planks'
);
event.recipes.minecraft.stonecutting(
item.of('carpetstairsmod:' + woodType + '_wood_floor', 6),
item.of('carpetstairsmod:' + woodType + '_wood_floor', 24),
'#minecraft:' + woodType + '_logs'
);
});
Expand Down
Loading

0 comments on commit 50caffa

Please sign in to comment.