14 if (this.
id ==
"chronicle")
25 this.dict.Add(this.currentLogIndex, data);
26 this.currentLogIndex++;
27 if (this.currentLogIndex >= this.maxLog)
29 this.dict.Remove(this.currentLogIndex - this.maxLog);
36 return this.Add(text, c.ToString());
40 public MsgLog.Data Add(
string text,
string col =
null)
47 data.date = (VirtualDate.current ??
EClass.world.date).Copy();
53 public List<
MsgLog.
Data> GetList(
bool reverse =
false)
74 public int currentLogIndex;