Show parameter tooltip for command templates

This commit is contained in:
Magnus Ulf 2019-02-01 09:04:35 +01:00
parent 4bcb4afd22
commit 9e217533fc

View File

@ -183,6 +183,8 @@ public class Parameter<T>
ret = mson("[" + this.getName() + def + "]");
}
if (this.hasDesc()) ret = ret.tooltip(this.getDesc());
return ret;
}