Skip to content

Commit

Permalink
Fix Patchouli book and update to 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Direwolf20-MC committed Aug 10, 2024
1 parent 53abef8 commit b89f5a1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 17 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ dependencies {

// Example mod dependency with JEI
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
compileOnly "mezz.jei:jei-${minecraft_version}-common-api:${jei_version}"
compileOnly "mezz.jei:jei-${minecraft_version}-neoforge-api:${jei_version}"
runtimeOnly "mezz.jei:jei-${minecraft_version}-neoforge:${jei_version}"
compileOnly "mezz.jei:jei-${jei_mc_version}-common-api:${jei_version}"
compileOnly "mezz.jei:jei-${jei_mc_version}-neoforge-api:${jei_version}"
runtimeOnly "mezz.jei:jei-${jei_mc_version}-neoforge:${jei_version}"

// Mekanism
compileOnly "mekanism:Mekanism:${mekanism_version}:api"
Expand Down
17 changes: 9 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,29 @@ neogradle.subsystems.parchment.mappingsVersion=2023.12.31
# Environment Properties
# You can find the latest versions here: https://projects.neoforged.net/neoforged/neoforge
# The Minecraft version must agree with the Neo version to get a valid artifact
minecraft_version=1.21
minecraft_version=1.21.1
# The Minecraft version range can use any release version of Minecraft as bounds.
# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly
# as they do not follow standard versioning conventions.
minecraft_version_range=[1.21,1.22)
# The Neo version must agree with the Minecraft version to get a valid artifact
neo_version=21.0.150
neo_version=21.1.4
# The Neo version range can use any version of Neo as bounds
neo_version_range=[21.0,)
# The loader version range can only use the major version of FML as bounds
loader_version_range=[2,)
#Mod Info
mod_id=laserio
mod_name=LaserIO
mod_version=1.9.6
mod_version=1.9.7
mod_license=MIT
mod_authors=direwolf20
mod_group_id=com.direwolf20.laserio
mod_description=Can't have DireWire without Wire!
#Dependencies
jei_version=19.5.0.49
curios_version=7.2.0+1.20.4
ae2_version=17.0.6-beta
patchouli_version=1.20.1-81-FORGE
mekanism_version=1.21-10.6.6.53
jei_mc_version=1.21
jei_version=19.8.2.99
curios_version=9.0.5+1.21
ae2_version=19.0.20-beta
patchouli_version=1.21-87-NEOFORGE-SNAPSHOT
mekanism_version=1.21-10.6.7.54
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
},
{
"type": "patchouli:spotlight",
"item": "laserio:card_item{channel:0b,exact:0b,inv:{Items:[],Size:2},itemextractamt:1b,itemextractspeed:20,mode:0b,priority:0s,regulate:0b,roundRobin:0,sneaky:-1b}",
"item": "laserio:card_item[laserio:card_transfer_mode=0b]",
"text": "Insert Mode cards are a validate destination for objects being extracted by Extract Mode cards.$(br2)Stock mode cards will attempt to pull from Insert Mode cards."
},
{
"type": "patchouli:spotlight",
"item": "laserio:card_item{channel:0b,exact:0b,inv:{Items:[],Size:2},itemextractamt:1b,itemextractspeed:20,mode:1b,priority:0s,regulate:0b,roundRobin:0,sneaky:-1b}",
"item": "laserio:card_item[laserio:card_transfer_mode=1b]",
"text": "Extract Mode cards attempt to remove objects from their adjacent block. Items, for example, will be removed from an adjacent chest and sent to an insert card."
},
{
"type": "patchouli:spotlight",
"item": "laserio:card_item{channel:0b,exact:0b,inv:{Items:[],Size:2},itemextractamt:1b,itemextractspeed:20,mode:2b,priority:0s,regulate:0b,roundRobin:0,sneaky:-1b}",
"item": "laserio:card_item[laserio:card_transfer_mode=2b]",
"text": "Stock Mode cards attempt to find the designated items in their filter, and pull them from other Insert Nodes in the same network.$(br2)Stock mode cards require a filter set to Allow."
},
{
"type": "patchouli:spotlight",
"item": "laserio:card_item{channel:0b,exact:0b,inv:{Items:[],Size:2},itemextractamt:1b,itemextractspeed:20,mode:3b,priority:0s,regulate:0b,roundRobin:0,sneaky:-1b}",
"item": "laserio:card_item[laserio:card_transfer_mode=3b]",
"text": "Sensor cards do not move objects around, but instead look at an adjacent inventory, and will emit a redstone signal on the redstone channel if the inventory matches the filter.$(br2)Sensor mode cards require a filter."
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"modid": "patchouli"
}
],
"type": "patchouli:shapeless_book_recipe",
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "laserio:logic_chip"
Expand All @@ -14,5 +14,10 @@
"item": "minecraft:book"
}
],
"book": "laserio:laseriobook"
"result": {
"id": "patchouli:guide_book",
"components": {
"patchouli:book": "laserio:laseriobook"
}
}
}

0 comments on commit b89f5a1

Please sign in to comment.