mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Append the event and not the word event to trade log
This commit is contained in:
parent
5aa2bc1706
commit
a3c71e4617
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ public class Trade
|
|||
}
|
||||
}
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(type).append(",").append(subtype).append(",").append("event").append(",\"");
|
||||
sb.append(type).append(",").append(subtype).append(",").append(event).append(",\"");
|
||||
sb.append(DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL).format(new Date()));
|
||||
sb.append("\",\"");
|
||||
if (sender != null)
|
||||
|
|
Loading…
Reference in a new issue