We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c811c commit c5c8f3fCopy full SHA for c5c8f3f
Common/src/main/java/at/petrak/hexcasting/api/casting/eval/env/PlayerBasedCastEnv.java
@@ -71,6 +71,16 @@ public void postExecution(CastResult result) {
71
this.sendMishapMsgToPlayer(doMishap);
72
}
73
74
+ if (this.caster != null){
75
+ double ambitAttribute = this.caster.getAttributeValue(HexAttributes.AMBIT_RADIUS);
76
+ if (this.ambitRadius != ambitAttribute){
77
+ this.ambitRadius = ambitAttribute;
78
+ }
79
+ double sentinelAttribute = this.caster.getAttributeValue(HexAttributes.SENTINEL_RADIUS);
80
+ if (this.sentinelRadius != sentinelAttribute){
81
+ this.sentinelRadius = sentinelAttribute;
82
83
84
85
86
@Override
0 commit comments