We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In case of nested import like bellow, LSLForge reports an error saying 'global variable A not found'. I fixed it but need more test. Wait for a while.
----------A.lslm --------------- $module (integer A) ----------B.lslm --------------- $module (integer A)
$module (integer A)
$import A.lslm(A=A); ----------C.lslm --------------- $module (integer A)
$import A.lslm(A=A);
$import B.lslm(A=A); ----------D.lslm --------------- $module (integer A)
$import B.lslm(A=A);
$import C.lslm(A=A);
The text was updated successfully, but these errors were encountered:
Fix Issue raysilent#59 'global variable XXX not found'
0838bdb
No branches or pull requests
In case of nested import like bellow,
LSLForge reports an error saying 'global variable A not found'.
I fixed it but need more test.
Wait for a while.
----------A.lslm ---------------
$module (integer A)
----------B.lslm ---------------
$module (integer A)
$import A.lslm(A=A);
----------C.lslm ---------------
$module (integer A)
$import B.lslm(A=A);
----------D.lslm ---------------
$module (integer A)
$import C.lslm(A=A);
The text was updated successfully, but these errors were encountered: