1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-07 17:03:00 +00:00

Render enchanted upgrades with a glint (#1532)

This commit is contained in:
Jonathan Coates
2023-07-23 11:18:22 +01:00
committed by GitHub
parent 940f59b116
commit 57a944fd90
17 changed files with 765 additions and 106 deletions

View File

@@ -623,6 +623,24 @@ class Turtle_Test {
}
// TODO: Turtle sucking from items
/**
* Render turtles as an item.
*/
@ClientGameTest
fun Render_turtle_items(helper: GameTestHelper) = helper.sequence {
thenExecute { helper.positionAtArmorStand() }
thenScreenshot()
}
/**
* Render turtles as a block entity.
*/
@ClientGameTest
fun Render_turtle_blocks(helper: GameTestHelper) = helper.sequence {
thenExecute { helper.positionAtArmorStand() }
thenScreenshot()
}
}
private val LuaTaskContext.turtle get() = getApi<TurtleAPI>()