Skip to content

Commit

Permalink
增加收菜连锁
Browse files Browse the repository at this point in the history
  • Loading branch information
QuanhuZeYu committed Jan 11, 2025
1 parent 2f8e756 commit 0c0e85d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 3 additions & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ dependencies {
// AE2Wireless
// Baubles
implementation("com.github.GTNewHorizons:LootGames:2.1.4:dev")
implementation("com.github.GTNewHorizons:EnderIO:2.8.24:dev")



// For testing iApiary
Expand All @@ -107,7 +109,7 @@ if(useMoreMod) {
runtimeOnly("com.github.GTNewHorizons:Railcraft:9.15.16:dev")
runtimeOnly("com.github.GTNewHorizons:waila:1.8.2:dev")
runtimeOnly("com.github.GTNewHorizons:InGame-Info-XML:2.8.19:dev")
runtimeOnly("com.github.GTNewHorizons:NotEnoughCharacters:1.7.10-1.5.3-GTNH:dev")
// runtimeOnly("com.github.GTNewHorizons:NotEnoughCharacters:1.7.10-1.5.3-GTNH:dev")
runtimeOnly("com.github.GTNewHorizons:NotEnoughItems:2.6.53-GTNH:dev")
runtimeOnly('com.github.GTNewHorizons:ServerUtilities:2.0.92:dev')
runtimeOnly("com.github.GTNewHorizons:Avaritia:1.58:dev")
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/club/heiqi/qz_miner/CommonProxy.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package club.heiqi.qz_miner;

import club.heiqi.qz_miner.eventIn.PlayerInteractive;
import club.heiqi.qz_miner.lootGame.FindMines;
import club.heiqi.qz_miner.eventIn.BlockBreakEvent;
import club.heiqi.qz_miner.network.QzMinerNetWork;
Expand All @@ -24,6 +25,7 @@ public void preInit(FMLPreInitializationEvent event) {

qzMinerNetWork = new QzMinerNetWork(event); // 初始化网络通信
FindMines.register();
PlayerInteractive.INSTANCE.register(event); // 注册玩家交互事件监听器
}

// load "Do your mod setup. Build whatever data structures you care about. Register recipes." (Remove if not needed)
Expand Down
11 changes: 6 additions & 5 deletions src/main/resources/mixins.qz_miner.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
"target": "@env(DEFAULT)",
"compatibilityLevel": "JAVA_8",
"mixins": [
"BlockBaseOreAccessor",
"BWTileEntityMetaGeneratedOreAccessor",
"MixinsBWTileEntityMetaGenOre",
"MixinsTileEntityOres",
"TileEntityOresAccessor"
"enderio.MixinRightClickCrop",
"GTMixin.BlockBaseOreAccessor",
"GTMixin.BWTileEntityMetaGeneratedOreAccessor",
"GTMixin.MixinsBWTileEntityMetaGenOre",
"GTMixin.MixinsTileEntityOres",
"GTMixin.TileEntityOresAccessor"
],
"client": [],
"server": []
Expand Down

0 comments on commit 0c0e85d

Please sign in to comment.