We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91275fc commit 6b266e3Copy full SHA for 6b266e3
nml/actions/action2real.py
@@ -89,6 +89,11 @@ def get_real_action2s(spritegroup, feature):
89
else:
90
loaded_list.append(action1_index)
91
92
+ if len(loaded_list) >= 0x80:
93
+ raise generic.ScriptError("Too many 'loaded' sprite set(s).", spritegroup.pos)
94
+ if len(loading_list) >= 0xFF:
95
+ raise generic.ScriptError("Too many 'loading' sprite set(s).", spritegroup.pos)
96
+
97
actions.append(
98
Action2Real(
99
feature,
0 commit comments