修复变量名使用错误的问题
This commit is contained in:
parent
bc7efd6185
commit
3519d2bf6e
|
@ -3304,7 +3304,7 @@ export namespace Protocol {
|
||||||
super.flag = PacketEntity.FLAG_REQUEST;
|
super.flag = PacketEntity.FLAG_REQUEST;
|
||||||
super.rpc_id = rpc_id;
|
super.rpc_id = rpc_id;
|
||||||
|
|
||||||
this.enable = row ?? false;
|
this.enable = enable ?? false;
|
||||||
}
|
}
|
||||||
enable = false;
|
enable = false;
|
||||||
}
|
}
|
||||||
|
@ -3326,7 +3326,7 @@ export namespace Protocol {
|
||||||
this.row = row ?? 0;
|
this.row = row ?? 0;
|
||||||
this.column = column ?? 0;
|
this.column = column ?? 0;
|
||||||
this.location = location ?? 0;
|
this.location = location ?? 0;
|
||||||
this.enable = row ?? false;
|
this.enable = enable ?? false;
|
||||||
this.width = width ?? 0;
|
this.width = width ?? 0;
|
||||||
}
|
}
|
||||||
row = 0;
|
row = 0;
|
||||||
|
|
Loading…
Reference in New Issue