stop accidentally uploading things to modrinth
This commit is contained in:
parent
ac1c16c2e7
commit
17439c48bf
2 changed files with 16 additions and 2 deletions
|
@ -0,0 +1,14 @@
|
|||
package at.petrak.hexcasting.common.casting.operators.eval
|
||||
|
||||
import at.petrak.hexcasting.api.casting.castables.Action
|
||||
import at.petrak.hexcasting.api.casting.eval.CastingEnvironment
|
||||
import at.petrak.hexcasting.api.casting.eval.OperationResult
|
||||
import at.petrak.hexcasting.api.casting.eval.vm.SpellContinuation
|
||||
import at.petrak.hexcasting.api.casting.iota.Iota
|
||||
import net.minecraft.nbt.CompoundTag
|
||||
|
||||
object OpThanos : Action {
|
||||
override fun operate(env: CastingEnvironment, stack: MutableList<Iota>, userData: CompoundTag, continuation: SpellContinuation): OperationResult {
|
||||
throw NotImplementedError()
|
||||
}
|
||||
}
|
|
@ -17,8 +17,8 @@ plugins {
|
|||
// Also it looks like property lookups don't work this early
|
||||
id 'fabric-loom' version '1.0-SNAPSHOT' apply false
|
||||
|
||||
id("at.petra-k.PKPlugin") version "0.1.0-pre-63"
|
||||
id("at.petra-k.PKSubprojPlugin") version "0.1.0-pre-63" apply false
|
||||
id("at.petra-k.PKPlugin") version "0.1.0-pre-64"
|
||||
id("at.petra-k.PKSubprojPlugin") version "0.1.0-pre-64" apply false
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
|
Loading…
Reference in a new issue