fix
This commit is contained in:
@@ -610,9 +610,9 @@ class Guild extends SnowFlake{
|
|||||||
"button",
|
"button",
|
||||||
"",
|
"",
|
||||||
"submit",
|
"submit",
|
||||||
function(){
|
()=>{
|
||||||
console.log(name, category);
|
console.log(name, category);
|
||||||
func(name, category);
|
func.bind(this)(name, category);
|
||||||
channelselect.hide();
|
channelselect.hide();
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@@ -636,11 +636,11 @@ class Guild extends SnowFlake{
|
|||||||
"button",
|
"button",
|
||||||
"",
|
"",
|
||||||
"submit",
|
"submit",
|
||||||
()=>{
|
function(this:Guild){
|
||||||
console.log(name, category);
|
console.log(name, category);
|
||||||
this.createChannel(name, category);
|
this.createChannel(name, category);
|
||||||
channelselect.hide();
|
channelselect.hide();
|
||||||
},
|
}.bind(this),
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
channelselect.show();
|
channelselect.show();
|
||||||
|
Reference in New Issue
Block a user