Heimdall: Implement Entity Kill Tracking

This commit is contained in:
Kenneth Endfinger
2021-12-24 19:04:03 -05:00
parent e10fa42c68
commit d7f094f765
10 changed files with 103 additions and 17 deletions

View File

@ -5,10 +5,12 @@ import org.jetbrains.exposed.sql.javatime.timestamp
object BlockBreakTable : Table("block_breaks") {
val time = timestamp("time")
val world = uuid("world")
val player = uuid("player")
val block = text("block")
val world = uuid("world")
val x = double("x")
val y = double("y")
val z = double("z")
val pitch = double("pitch")
val yaw = double("yaw")
val block = text("block")
}