lysis-java icon indicating copy to clipboard operation
lysis-java copied to clipboard

Can't decompled bool?"xxx":"yyy"

Open YuanBaian opened this issue 4 years ago • 0 comments

My Code: public void OnPluginStart(){ SetFailState(sbbool?"hello":"sourcepawn"); }

Decompled Code: public void:OnPluginStart() { new var1; if (sbbool) { var1[0] = 2372; } else { var1[0] = 2380; } SetFailState(var1); return 0; }

how can i fix this

YuanBaian avatar Aug 30 '20 00:08 YuanBaian