Skip to content

Commit

Permalink
remove ZR_VER_REVISION (was never used)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushaway committed Jan 30, 2025
1 parent 7b1c470 commit 8f24f9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/addons/sourcemod/scripting/zr/hgversion.h.inc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define ZR_VER_BRANCH "master"
#define ZR_VER_MAJOR "3"
#define ZR_VER_MINOR "11"
#define ZR_VER_REVISION "0"
#define ZR_VERSION ZR_VER_MAJOR..."."...ZR_VER_MINOR..."."...ZR_VER_REVISION
#define ZR_VER_PATCH "0"
#define ZR_VERSION ZR_VER_MAJOR..."."...ZR_VER_MINOR..."."...ZR_VER_PATCH
#define ZR_VER_LICENSE "GNU GPL, Version 3"
#define ZR_VER_DATE "Wed Jan 30 09:38:56 CEST 2025"
3 changes: 0 additions & 3 deletions src/addons/sourcemod/scripting/zr/versioninfo.inc
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ public Action Command_Version(int client, int argc)
Format(linebuffer, sizeof(linebuffer), FORMATSTRING, "License", ZR_VER_LICENSE);
StrCat(buffer, sizeof(buffer), linebuffer);

Format(linebuffer, sizeof(linebuffer), FORMATSTRING, "Build", ZR_VER_REVISION);
StrCat(buffer, sizeof(buffer), linebuffer);

Format(linebuffer, sizeof(linebuffer), FORMATSTRING, "Development branch", ZR_VER_BRANCH);
StrCat(buffer, sizeof(buffer), linebuffer);

Expand Down

0 comments on commit 8f24f9e

Please sign in to comment.