mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2025-04-21 00:50:04 +02:00
Compare commits
22 commits
1.18
...
1.16.1-2.0
Author | SHA1 | Date | |
---|---|---|---|
76bc97b561 | |||
098fc0e693 | |||
db99c8e142 | |||
00f0e51491 | |||
1cb42f0740 | |||
f4a0423b52 | |||
e4b3421324 | |||
a10a10e668 | |||
6bb38b43c6 | |||
c16d1d22ac | |||
b848742f90 | |||
3aee9629df | |||
40a4df7a20 | |||
7b291d514f | |||
0d90de89cf | |||
9aec266dd2 | |||
0ca8f23b69 | |||
e4ca89680d | |||
d87c7f7d1b | |||
20b016dd57 | |||
95d3c504ba | |||
1186043bf3 |
6 changed files with 15 additions and 11 deletions
|
@ -104,6 +104,10 @@ dependencies {
|
||||||
version: "${project.botania}",
|
version: "${project.botania}",
|
||||||
classifier: "api"
|
classifier: "api"
|
||||||
])
|
])
|
||||||
|
|
||||||
|
//runtimeOnly fg.deobf("vazkii.patchouli:Patchouli:1.16-39")
|
||||||
|
//runtimeOnly fg.deobf("top.theillusivec4.curios:curios:FORGE-1.16.1-3.0")
|
||||||
|
//runtimeOnly fg.deobf("vazkii.botania:Botania:1.16-398")
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
@ -137,4 +141,4 @@ publishing {
|
||||||
url "file:///${project.projectDir}/mcmodsrepo"
|
url "file:///${project.projectDir}/mcmodsrepo"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,11 +4,11 @@ org.gradle.daemon=false
|
||||||
author=thetadev
|
author=thetadev
|
||||||
modid=constructionwand
|
modid=constructionwand
|
||||||
|
|
||||||
mcversion=1.16.5
|
mcversion=1.16.1
|
||||||
forgeversion=36.0.46
|
forgeversion=32.0.108
|
||||||
mcp_mappings=20200723-1.16.1
|
mcp_mappings=20200723-1.16.1
|
||||||
|
|
||||||
botania=1.16.2-405
|
botania=1.16-398
|
||||||
|
|
||||||
version_major=2
|
version_major=2
|
||||||
version_minor=0
|
version_minor=0
|
||||||
|
|
|
@ -116,7 +116,7 @@ public class WandUtil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove block if placeEvent is canceled
|
// Remove block if placeEvent is canceled
|
||||||
BlockSnapshot snapshot = BlockSnapshot.create(world.func_234923_W_(), world, pos);
|
BlockSnapshot snapshot = BlockSnapshot.create(world, pos);
|
||||||
BlockEvent.EntityPlaceEvent placeEvent = new BlockEvent.EntityPlaceEvent(snapshot, block, player);
|
BlockEvent.EntityPlaceEvent placeEvent = new BlockEvent.EntityPlaceEvent(snapshot, block, player);
|
||||||
MinecraftForge.EVENT_BUS.post(placeEvent);
|
MinecraftForge.EVENT_BUS.post(placeEvent);
|
||||||
if(placeEvent.isCanceled()) {
|
if(placeEvent.isCanceled()) {
|
||||||
|
|
|
@ -3,8 +3,8 @@ package thetadev.constructionwand.data;
|
||||||
import net.minecraft.data.DataGenerator;
|
import net.minecraft.data.DataGenerator;
|
||||||
import net.minecraft.item.BlockItem;
|
import net.minecraft.item.BlockItem;
|
||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
|
import net.minecraftforge.client.model.generators.ExistingFileHelper;
|
||||||
import net.minecraftforge.client.model.generators.ItemModelProvider;
|
import net.minecraftforge.client.model.generators.ItemModelProvider;
|
||||||
import net.minecraftforge.common.data.ExistingFileHelper;
|
|
||||||
import thetadev.constructionwand.ConstructionWand;
|
import thetadev.constructionwand.ConstructionWand;
|
||||||
import thetadev.constructionwand.items.ModItems;
|
import thetadev.constructionwand.items.ModItems;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package thetadev.constructionwand.data;
|
package thetadev.constructionwand.data;
|
||||||
|
|
||||||
import net.minecraft.data.DataGenerator;
|
import net.minecraft.data.DataGenerator;
|
||||||
import net.minecraftforge.common.data.ExistingFileHelper;
|
import net.minecraftforge.client.model.generators.ExistingFileHelper;
|
||||||
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||||||
import net.minecraftforge.fml.common.Mod;
|
import net.minecraftforge.fml.common.Mod;
|
||||||
import net.minecraftforge.fml.event.lifecycle.GatherDataEvent;
|
import net.minecraftforge.fml.event.lifecycle.GatherDataEvent;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
modLoader="javafml"
|
modLoader="javafml"
|
||||||
loaderVersion="[33,)"
|
loaderVersion="[32,)"
|
||||||
license="MIT License"
|
license="MIT License"
|
||||||
[[mods]]
|
[[mods]]
|
||||||
modId="constructionwand"
|
modId="constructionwand"
|
||||||
|
@ -20,12 +20,12 @@ This is my first minecraft mod. May the odds be ever in your favor.
|
||||||
[[dependencies.constructionwand]]
|
[[dependencies.constructionwand]]
|
||||||
modId="forge"
|
modId="forge"
|
||||||
mandatory=true
|
mandatory=true
|
||||||
versionRange="[33,)"
|
versionRange="[32,)"
|
||||||
ordering="NONE"
|
ordering="NONE"
|
||||||
side="BOTH"
|
side="BOTH"
|
||||||
[[dependencies.constructionwand]]
|
[[dependencies.constructionwand]]
|
||||||
modId="minecraft"
|
modId="minecraft"
|
||||||
mandatory=true
|
mandatory=true
|
||||||
versionRange="[1.16.2, 1.16.5]"
|
versionRange="[1.16.1]"
|
||||||
ordering="NONE"
|
ordering="NONE"
|
||||||
side="BOTH"
|
side="BOTH"
|
||||||
|
|
Loading…
Add table
Reference in a new issue