MRMJ-1: Messenger & Skills fixes
This commit is contained in:
@@ -1305,7 +1305,6 @@ void initapp()
|
||||
{ "OnLogoRender", appLogoRender, METH_VARARGS },
|
||||
{ "OnLogoOpen", appLogoOpen, METH_VARARGS },
|
||||
{ "OnLogoClose", appLogoClose, METH_VARARGS },
|
||||
|
||||
|
||||
{ NULL, NULL },
|
||||
};
|
||||
@@ -1490,4 +1489,22 @@ void initapp()
|
||||
#else
|
||||
PyModule_AddIntConstant(poModule, "ENABLE_NEW_EQUIPMENT_SYSTEM", 0);
|
||||
#endif
|
||||
|
||||
#ifdef FIX_MESSENGER_ACTION_SYNC
|
||||
PyModule_AddIntConstant(poModule, "FIX_MESSENGER_ACTION_SYNC", 1);
|
||||
#else
|
||||
PyModule_AddIntConstant(poModule, "FIX_MESSENGER_ACTION_SYNC", 0);
|
||||
#endif
|
||||
|
||||
#ifdef FIX_REFRESH_SKILL_COOLDOWN
|
||||
PyModule_AddIntConstant(poModule, "FIX_REFRESH_SKILL_COOLDOWN", 1);
|
||||
#else
|
||||
PyModule_AddIntConstant(poModule, "FIX_REFRESH_SKILL_COOLDOWN", 0);
|
||||
#endif
|
||||
|
||||
#ifdef FIX_HORSE_SKILLS_TAB
|
||||
PyModule_AddIntConstant(poModule, "FIX_HORSE_SKILLS_TAB", 1);
|
||||
#else
|
||||
PyModule_AddIntConstant(poModule, "FIX_HORSE_SKILLS_TAB", 0);
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user