Skip to content

Commit

Permalink
Prepare 1.10.14
Browse files Browse the repository at this point in the history
  • Loading branch information
winstliu committed Oct 22, 2016
1 parent 21ecbc6 commit aa42d96
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
16 changes: 12 additions & 4 deletions addons/sourcemod/scripting/freak_fortress_2.sp
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ Updated by Wliu, Chris, Lawd, and Carge after Powerlord quit FF2

#define MAJOR_REVISION "1"
#define MINOR_REVISION "10"
#define STABLE_REVISION "13"
#define STABLE_REVISION "14"
#define DEV_REVISION "Beta"
#if !defined DEV_REVISION
#define PLUGIN_VERSION MAJOR_REVISION..."."...MINOR_REVISION..."."...STABLE_REVISION //1.10.13
#define PLUGIN_VERSION MAJOR_REVISION..."."...MINOR_REVISION..."."...STABLE_REVISION //1.10.14
#else
#define PLUGIN_VERSION MAJOR_REVISION..."."...MINOR_REVISION..."."...STABLE_REVISION..." "...DEV_REVISION
#endif
Expand Down Expand Up @@ -298,7 +298,8 @@ static const String:ff2versiontitles[][]=
"1.10.10",
"1.10.11",
"1.10.12",
"1.10.13"
"1.10.13",
"1.10.14"
};

static const String:ff2versiondates[][]=
Expand Down Expand Up @@ -379,13 +380,20 @@ static const String:ff2versiondates[][]=
"August 1, 2016", //1.10.10
"August 1, 2016", //1.10.11
"August 4, 2016", //1.10.12
"September 1, 2016" //1.10.13
"September 1, 2016", //1.10.13
"October 21, 2016" //1.10.14
};

stock FindVersionData(Handle:panel, versionIndex)
{
switch(versionIndex)
{
case 77: //1.10.14
{
DrawPanelText(panel, "1) Fixed minions occasionally spawning on the wrong team (Wliu from various)");
DrawPanelText(panel, "2) Fixed ff2_start_music at the start of the round causing music to overlap (naydef)");
DrawPanelText(panel, "3) Fixed new clients not hearing music in certain circumstances (naydef)");
}
case 76: //1.10.13
{
DrawPanelText(panel, "1) Fixed insta-backstab issues (Wliu from tom0034)");
Expand Down
10 changes: 5 additions & 5 deletions update.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
{
"Version"
{
"Latest" "1.10.13"
"Previous" "1.10.12"
"Latest" "1.10.14"
"Previous" "1.10.13"
}

"Notes" "Fixed insta-backstab issues"
"Notes" "Fixed team-changing exploit"
"Notes" "[Server] Fixed an error message logging the wrong values"
"Notes" "Fixed minions occasionally spawning on the wrong team"
"Notes" "Fixed ff2_start_music at the start of the round causing music to overlap"
"Notes" "Fixed new clients not hearing music in certain circumstances"
}

"Files"
Expand Down

0 comments on commit aa42d96

Please sign in to comment.