Skip to content

Commit

Permalink
Fix build error; bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
safalin1 committed May 18, 2022
1 parent 74d8257 commit f2413e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/scripting/AS-MicroTF2.sp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

//#define DEBUG
//#define LOGGING_STARTUP
#define PLUGIN_VERSION "5.2.3"
#define PLUGIN_VERSION "5.2.4"
#define PLUGIN_PREFIX "\x0700FFFF[ \x07FFFF00WarioWare \x0700FFFF] {default}"
#define PLUGIN_MAPPREFIX "warioware_redux_"

Expand Down
4 changes: 2 additions & 2 deletions src/scripting/Bossgames/Bossgame7.sp
Original file line number Diff line number Diff line change
Expand Up @@ -989,8 +989,8 @@ public int GetEntityId(const char[] entityType, const char[] name)
public void Bossgame7_PlaySnd(int client, const char[] file)
{
char path[MAX_PATH_LENGTH];
Format(path, sizeof(path), "play %s", file);
Sounds_ConvertTokens(sound, path, sizeof(path));
Sounds_ConvertTokens(file, path, sizeof(path));
Format(path, sizeof(path), "play %s", path);
ClientCommand(client, path);
}

Expand Down

0 comments on commit f2413e6

Please sign in to comment.