Skip to content

Commit

Permalink
Wrong pluginhandler version corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
Beasty committed Sep 18, 2018
1 parent 135c384 commit 2dd8993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/main.d
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ extern (C) int Plugin_Scr_GetNumParam();
// plugin meta info
extern (C) void OnInfoRequest(pluginInfo_t *info)
{
info.handlerVersion = version_t(3, 100);
info.pluginVersion = version_t(0, 1);
info.handlerVersion = version_t(PLUGIN_HANDLER_VERSION_MAJOR, PLUGIN_HANDLER_VERSION_MINOR);
info.pluginVersion = version_t(1, 1);
}

void dbgwriteln(T...)(T args)
Expand Down

0 comments on commit 2dd8993

Please sign in to comment.