updated things to get the latest patchouli version, now works on servers!
This commit is contained in:
parent
cb59237372
commit
1d30fb84c9
3 changed files with 6 additions and 6 deletions
|
@ -11,10 +11,10 @@ import net.minecraft.world.phys.Vec3
|
|||
class OpCircleBounds(val max: Boolean) : ConstMediaAction {
|
||||
override val argc = 0
|
||||
|
||||
override fun execute(args: List<Iota>, ctx: CastingEnvironment): List<Iota> {
|
||||
if (ctx !is CircleCastEnv)
|
||||
override fun execute(args: List<Iota>, env: CastingEnvironment): List<Iota> {
|
||||
if (env !is CircleCastEnv)
|
||||
throw MishapNoSpellCircle()
|
||||
val circle = ctx.impetus ?: throw MishapNoSpellCircle()
|
||||
val circle = env.impetus ?: throw MishapNoSpellCircle()
|
||||
|
||||
val aabb = circle.executionState!!.bounds // the circle should have an execution state since it's executing this.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
forgeVersion=47.0.3
|
||||
forgeVersion=47.1.43
|
||||
|
||||
kotlinForForgeVersion=4.3.0
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ kotlinVersion=1.7.20
|
|||
modVersion=0.11.1-7
|
||||
|
||||
paucalVersion=0.6.0
|
||||
patchouliVersion=80
|
||||
patchouliVersion=82
|
||||
|
||||
jeiVersion=15.0.0.12
|
||||
pehkuiVersion=3.7.6
|
||||
pehkuiVersion=3.7.7
|
||||
|
|
Loading…
Reference in a new issue