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
Currently only numbers and strings are accepted. This leads to either weird mixed type params where both implicitly convert to the desired boolean but neither is actually a boolean (1 for true and nil for false) or going with the C convention that goes against regular Lua boolean semantics (1 for true, 0 for false, despite 0 being true in Lua).
The text was updated successfully, but these errors were encountered:
sprunk
added a commit
to sprunk/spring-1
that referenced
this issue
Jun 24, 2023
Currently only numbers and strings are accepted. This leads to either weird mixed type params where both implicitly convert to the desired boolean but neither is actually a boolean (
1
for true andnil
for false) or going with the C convention that goes against regular Lua boolean semantics (1
for true,0
for false, despite0
beingtrue
in Lua).The text was updated successfully, but these errors were encountered: