Browse Source

修复死循环

zouyong 5 years ago
parent
commit
c9a9286905
1 changed files with 1 additions and 1 deletions
  1. 1 1
      assets/script/mk/system/MKSystem.ts

+ 1 - 1
assets/script/mk/system/MKSystem.ts

@@ -116,7 +116,7 @@ class MKSystem {
         return this._tip || new TipSystem();
     }
     public set tip(v:TipSystem){
-        this.tip = v;
+        this._tip = v;
     }
 }