Skip to content

Commit

Permalink
💥 Currently broken for 1.20.1, fixing time...
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed Jul 1, 2023
1 parent c22cec7 commit 87996db
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 17 deletions.
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "org.quiltmc.loom" version "1.0.+"
id "io.github.juuxel.loom-quiltflower" version "1.+"
id "io.github.juuxel.loom-quiltflower" version "1.8.+"
id "maven-publish"
}
archivesBaseName = project.archives_base_name
Expand All @@ -22,19 +22,18 @@ dependencies {
// dev environment
minecraft("com.mojang:minecraft:$minecraft_version")
mappings loom.layered {
it.addLayer(quiltMappings.mappings("org.quiltmc:quilt-mappings:$minecraft_version+build.$qm_build:v2"))
it.mappings("org.quiltmc:quilt-mappings:$minecraft_version+build.$qm_build:intermediary-v2")
it.officialMojangMappings { setNameSyntheticMembers(false) }
}
modImplementation("org.quiltmc:quilt-loader:$quilt_loader")
modImplementation("org.quiltmc.quilted-fabric-api:quilted-fabric-api:$quilted_fabric_api")

// dev env
modLocalRuntime("maven.modrinth:lazydfu:$lazydfu_version")
modLocalRuntime("maven.modrinth:suggestion-tweaker:$suggestion_tweaker_version")
modLocalRuntime("me.shedaniel.cloth:cloth-config-fabric:$cloth_config_version")
modLocalRuntime("curse.maven:jade-324717:$jade_file")
modLocalRuntime("com.terraformersmc:modmenu:$mod_menu_version")
modLocalRuntime("dev.emi:emi:$emi_version")
modLocalRuntime("dev.emi:emi-fabric:$emi_version")
}

task buildOrPublish {
Expand Down
20 changes: 9 additions & 11 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,19 @@ archives_base_name = succ
# <build> is replaced at compile time with either GitHub Actions build number, or 99999 if not available.
version = 0.1.<build>

minecraft_version = 1.19.2
qm_build = 3
quilt_loader = 0.17.2-beta.3
quilted_fabric_api = 4.0.0-beta.7+0.59.0-1.19.2
minecraft_version = 1.20.1
qm_build = 7
quilt_loader = 0.19.2-beta.5
quilted_fabric_api = 7.0.4+0.84.0-1.20.1

# dev env mods
# https://modrinth.com/mod/lazydfu
lazydfu_version = 0.1.3
# https://modrinth.com/mod/suggestion-tweaker
suggestion_tweaker_version = 1.19.1-1.3.1+fabric
suggestion_tweaker_version = 1.20-1.4.2+fabric
# https://modrinth.com/mod/cloth-config - for Suggestion Tweaker
cloth_config_version = 8.0.75
cloth_config_version = 11.0.99
# https://www.curseforge.com/minecraft/mc-mods/jade/files/all
jade_file = 3903418
jade_file = 4614077
# https://modrinth.com/mod/modmenu
mod_menu_version = 4.0.6
mod_menu_version = 7.1.0
# https://modrinth.com/mod/emi
emi_version = 0.3.3+1.19
emi_version = 1.0.5+1.20.1
4 changes: 2 additions & 2 deletions src/main/java/one/devos/nautical/succ/SuccUtils.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package one.devos.nautical.succ;

import com.mojang.math.Vector3f;

import net.minecraft.core.Direction;
import net.minecraft.core.Direction.Axis;
import net.minecraft.network.FriendlyByteBuf;
import net.minecraft.util.Mth;
import net.minecraft.world.phys.Vec3;

import org.joml.Vector3f;

public class SuccUtils {
// around Y axis
public static Vec3 rotateVec(Vec3 vec, double degrees) {
Expand Down

1 comment on commit 87996db

@asoji
Copy link
Member Author

@asoji asoji commented on 87996db Jul 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hey build please fail -w-

Please sign in to comment.