feat: add tellraw string

Signed-off-by: MiaoWoo <admin@yumc.pw>
clean
MiaoWoo 2020-01-17 17:44:08 +08:00
parent 5642a93974
commit 268f5d2837
1 changed files with 9 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class Tellraw {
json() {
if (!this.cache) {
var temp = [];
this.parts.forEach(function(t) {
this.parts.forEach(t => {
temp.push(t.convert());
});
this.cache = JSON.stringify(temp);
@ -96,6 +96,14 @@ class Tellraw {
}
return this.cache;
}
string() {
var temp = '';
this.parts.forEach(t => {
temp += t.text
});
return temp;
}
}
export default Tellraw