Skip to content

Commit

Permalink
Remove time from trophy pedestal
Browse files Browse the repository at this point in the history
  • Loading branch information
glowredman committed Nov 30, 2023
1 parent f3b0b26 commit b275b4d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//version: 1699290261
//version: 1700844281
/*
DO NOT CHANGE THIS FILE!
Also, you may replace this file at any time if there is an update available.
Expand Down Expand Up @@ -302,7 +302,7 @@ if (apiPackage) {
}

if (accessTransformersFile) {
for (atFile in accessTransformersFile.split(",")) {
for (atFile in accessTransformersFile.split(" ")) {
String targetFile = "src/main/resources/META-INF/" + atFile.trim()
if (!getFile(targetFile).exists()) {
throw new GradleException("Could not resolve \"accessTransformersFile\"! Could not find " + targetFile)
Expand Down
2 changes: 1 addition & 1 deletion run/config/amazingtrophies/trophies/test/block/place.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"id": "block.place.json",
"id": "block.place",
"_comment": "Should trigger if the player places either normal or red sand",
"condition": {
"type": "block.place",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void render(double x, double y, double z, int rotation, @Nullable String
GL11.glPopMatrix();
return;
}
String timeText = String.format("%1$tF %1$tT", time);
String timeText = String.format("%1$tF", time);
FontRenderer fontRenderer = Minecraft.getMinecraft().fontRenderer;
GL11.glRotatef(180.0f, 0.0f, 1.0f, 0.0f);
GL11.glTranslatef(0.0f, -0.5f, 0.376f);
Expand Down

0 comments on commit b275b4d

Please sign in to comment.