Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
khalidahmedshalabi committed Dec 3, 2015
1 parent f273b4b commit 2cba0bd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gamemodes/bulletproof.pwn
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public OnPlayerConnect(playerid)
SendClientMessage(playerid, -1, ""COL_PRIM"Don't miss our updates: {FFFFFF}/checkversion");
SendClientMessage(playerid, -1, ""COL_PRIM"Developers: {FFFFFF}Whitetiger"COL_PRIM" & {FFFFFF}[KHK]Khalid"COL_PRIM"");
SendClientMessage(playerid, -1, ""COL_PRIM"Contributors on GitHub: {FFFFFF}ApplePieLife"COL_PRIM", {FFFFFF}JamesCullum"COL_PRIM", {FFFFFF}shendlaw"COL_PRIM", {FFFFFF}pds2k12");
SendClientMessage(playerid, -1, ""COL_PRIM"Visit {FFFFFF}www.bulletproof.ml "COL_PRIM"for much more league features!");
SendClientMessage(playerid, -1, ""COL_PRIM"Visit {FFFFFF}www.bulletproof.ml "COL_PRIM"for much more features!");
new str[128];
format(str,sizeof(str),""COL_PRIM"Server limits: Min FPS = {FFFFFF}%d "COL_PRIM"| Max Ping = {FFFFFF}%d "COL_PRIM"| Max PL = {FFFFFF}%.2f", Min_FPS, Max_Ping, Float:Max_Packetloss);
SendClientMessage(playerid, -1, str);
Expand Down
2 changes: 1 addition & 1 deletion pawno/include/modules/header/this_core.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Gamemode core
*/

#define GM_NAME "Bulletproof 0.1-RC3"
#define GM_NAME "Bulletproof 0.1-RC4"
#define GM_WEBSITE "www.bulletproof.ml"

#define GTAV_SWITCH_MENU 0 // Toggles the gta v switch menu (gunswitch library)
Expand Down
7 changes: 6 additions & 1 deletion pawno/include/modules/src/match.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2846,7 +2846,12 @@ public WarEnded()
{
if(TeamScore[ATTACKER] > 0 || TeamScore[DEFENDER] > 0)
{
OnLeagueMatchEnd();
if(TeamScore[ATTACKER] > TeamScore[DEFENDER])
OnLeagueMatchEnd(ATTACKER);
else if(TeamScore[DEFENDER] > TeamScore[ATTACKER])
OnLeagueMatchEnd(DEFENDER);
else
OnLeagueMatchEnd(-1);
}
}
#endif
Expand Down

0 comments on commit 2cba0bd

Please sign in to comment.