diff --git a/src/main/java/eu/crushedpixel/replaymod/holders/TimestampValue.java b/src/main/java/eu/crushedpixel/replaymod/holders/TimestampValue.java index 73cfa0b2..acf62815 100644 --- a/src/main/java/eu/crushedpixel/replaymod/holders/TimestampValue.java +++ b/src/main/java/eu/crushedpixel/replaymod/holders/TimestampValue.java @@ -29,4 +29,9 @@ public class TimestampValue implements KeyframeValue { public Interpolation getCubicInterpolator() { return new GenericSplineInterpolation(); } + + @Override + public String toString() { + return "TimestampValue: "+asInt(); + } }