Skip to content

Commit

Permalink
alpha.10 (resolve refund & mixinextras) (#20)
Browse files Browse the repository at this point in the history
* Fix issue with FOCUS not being recognized in refunds.

* CL & alpha.10 staging
  • Loading branch information
bibi-reden authored Aug 4, 2024
1 parent 907bfcc commit d239919
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Build and Deploy
name: Deployment (J17)
on:
push:
branches-ignore:
- master
- "**/dev**"
- "**-dev"
- "**-dev**"
- dev


jobs:
build-and-deploy:
env:
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
## Changes ⚒️
- Resolved issues with OPC.
## Changes 🌽
- Fixed issue with the new attribute **Focus** not being recognized in `RefundFactory`.
- Updated mixinextras directly in the mod to 0.4.0.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ dependencies {
modImplementation include("eu.pb4:placeholder-api:${project.placeholder_api_version}")

implementation include("net.objecthunter:exp4j:${project.exp4j_version}")

include(implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:${project.mixinextras_version}")))
}

processResources {
Expand Down
6 changes: 4 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ parchment_version=1.20.1:2023.09.03
quilt_mappings_version=23

# Mod Properties
mod_version=4.0.0+1.20.1-alpha.9
mod_version=4.0.0+1.20.1-alpha.10
maven_group=com.bibireden.playerex
archives_base_name=playerex-directors-cut

Expand All @@ -31,7 +31,7 @@ ranged_weapon_api_version=1.1.2+1.20.1

# in-house
opc_version=2.0.0+1.20.1-beta.2-fabric
data_attributes_version=2.0.0-beta.7+1.20.1-fabric
data_attributes_version=2.0.0-beta.8+1.20.1-fabric

# owo
owo_version=0.11.2+1.20
Expand All @@ -42,3 +42,5 @@ endec_gson_version=0.1.4
endec_netty_version=0.1.3

exp4j_version=0.4.8

mixinextras_version=0.4.0
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ object RefundFactory {
registry.accept { data, player -> data.get(PlayerEXAttributes.DEXTERITY) }
registry.accept { data, player -> data.get(PlayerEXAttributes.INTELLIGENCE) }
registry.accept { data, player -> data.get(PlayerEXAttributes.LUCKINESS) }
registry.accept { data, player -> data.get(PlayerEXAttributes.FOCUS) }
}
}

0 comments on commit d239919

Please sign in to comment.