diff --git a/src/common/scripting/interface/vmnatives.cpp b/src/common/scripting/interface/vmnatives.cpp index 48d4ac1dc..bfd39261e 100644 --- a/src/common/scripting/interface/vmnatives.cpp +++ b/src/common/scripting/interface/vmnatives.cpp @@ -1283,6 +1283,7 @@ DEFINE_GLOBAL_NAMED(PClass::AllClasses, AllClasses) DEFINE_GLOBAL(AllServices) DEFINE_GLOBAL(Bindings) +DEFINE_GLOBAL(DoubleBindings) DEFINE_GLOBAL(AutomapBindings) DEFINE_GLOBAL(generic_ui) diff --git a/wadsrc/static/zscript/engine/base.zs b/wadsrc/static/zscript/engine/base.zs index c57db2952..d182f5234 100644 --- a/wadsrc/static/zscript/engine/base.zs +++ b/wadsrc/static/zscript/engine/base.zs @@ -195,6 +195,7 @@ struct _ native unsafe(internal) // These are the global variables, the struct i native internal readonly Map AllServices; native readonly bool multiplayer; native @KeyBindings Bindings; + native @KeyBindings DoubleBindings; native @KeyBindings AutomapBindings; native readonly @GameInfoStruct gameinfo; native readonly ui bool netgame;