From 59592b938a33e5d5461666ffff9a07c2347aacf0 Mon Sep 17 00:00:00 2001 From: CrushedPixel Date: Tue, 11 Aug 2015 15:15:26 +0200 Subject: [PATCH] Added Disclaimer to Replay Editor indicating that bugs may occur --- .../replaymod/gui/replayeditor/GuiReplayEditor.java | 2 +- src/main/resources/assets/replaymod/lang/en_US.lang | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/eu/crushedpixel/replaymod/gui/replayeditor/GuiReplayEditor.java b/src/main/java/eu/crushedpixel/replaymod/gui/replayeditor/GuiReplayEditor.java index d7145692..93b355ef 100755 --- a/src/main/java/eu/crushedpixel/replaymod/gui/replayeditor/GuiReplayEditor.java +++ b/src/main/java/eu/crushedpixel/replaymod/gui/replayeditor/GuiReplayEditor.java @@ -176,7 +176,7 @@ public class GuiReplayEditor extends GuiScreen { i++; } - drawCenteredString(fontRendererObj, I18n.format("replaymod.gui.replayeditor"), this.width / 2, 10, 16777215); + drawCenteredString(fontRendererObj, I18n.format("replaymod.gui.editor.disclaimer"), this.width / 2, 10, 16777215); drawString(fontRendererObj, I18n.format("replaymod.gui.editor.replayfile"), 30, 67, Color.WHITE.getRGB()); replayDropdown.drawTextBox(); diff --git a/src/main/resources/assets/replaymod/lang/en_US.lang b/src/main/resources/assets/replaymod/lang/en_US.lang index 5d1782ce..8cfef8e4 100644 --- a/src/main/resources/assets/replaymod/lang/en_US.lang +++ b/src/main/resources/assets/replaymod/lang/en_US.lang @@ -222,6 +222,8 @@ replaymod.gui.editor.progress.status.writing.raw=Rewriting Replay... replaymod.gui.editor.progress.status.writing.final=Writing File to disk... replaymod.gui.editor.progress.status.finished=Finished Editing! +replaymod.gui.editor.disclaimer=The Replay Editor is an experimental feature and may contain bugs. + #Cancel Replay GUI replaymod.gui.cancelrender.title=Cancel Rendering replaymod.gui.cancelrender.message=Are you sure that you want to cancel the current rendering process?