You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BYOND has a large number of built in flags, and I assume that the fairly new BYOND visual filter flags have yet to get added to a list of built in flags. The result is that using one of those flags results in an erroneous unknown variable error, when it compiles just fine. The flag in question is OUTLINE_SHARP for the outline filter, as seen in this picture.
After doing some research, the built in flag definitions seem to be located here so I'm not sure if it's as simple as just adding them so the language server stops thinking it's an undefined variable. If it actually is just that simple then I can try to fix it, and #195 seems to suggest that it would be an easy fix, hopefully.
The text was updated successfully, but these errors were encountered:
Fixes#205.
Tried to fix the issue I found last night in the same way that #165
added other filter flags, but that PR seemed to have forgotten to add
the two outline flags.
I tested this locally and the error doesn't come up now so it does work.
BYOND has a large number of built in flags, and I assume that the fairly new BYOND visual filter flags have yet to get added to a list of built in flags. The result is that using one of those flags results in an erroneous unknown variable error, when it compiles just fine. The flag in question is
OUTLINE_SHARP
for the outline filter, as seen in this picture.After doing some research, the built in flag definitions seem to be located here so I'm not sure if it's as simple as just adding them so the language server stops thinking it's an undefined variable. If it actually is just that simple then I can try to fix it, and #195 seems to suggest that it would be an easy fix, hopefully.
The text was updated successfully, but these errors were encountered: