Skip to content

Commit

Permalink
Version 2.40
Browse files Browse the repository at this point in the history
- Bugix for `sync_throw_projectile` method, v2.37 didn't port the update to biglobby method. 
- Bugfix for v2.38 biglobby method missing receiver prefix.
  • Loading branch information
polarathene committed Apr 26, 2017
1 parent 45ceb46 commit c97f904
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
Binary file modified BigLobby - original + biglobby__ prefix - set 128 max player.pdmod
Binary file not shown.
4 changes: 2 additions & 2 deletions biglobby/lua/_custom/biglobby_globals.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ if not _G.BigLobbyGlobals then

-- Semantic versioning
function BigLobbyGlobals:version()
return "2.39"
return "2.40"
end


-- GameVersion for matchmaking, integer is expected
function BigLobbyGlobals:gameversion()
return 239
return 240
end


Expand Down
12 changes: 10 additions & 2 deletions biglobby/mod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"description": "Increase the player limit of a lobby from the original 4.",
"author": "Polarathene",
"contact": "no@support.com",
"version": "2.39",
"version": "2.40",
"priority" : 400,
"updates": [
{
"revision": 2.39,
"revision": 2.40,
"identifier": "bkin-biglobby"
}
],
Expand Down Expand Up @@ -132,6 +132,14 @@
{
"hook_id": "lib/tweak_data/tweakdata",
"script_path": "lua/lib/tweak_data/_tweakdata.lua"
},
{
"hook_id": "lib/network/base/handlers/packetnetworkhandler",
"script_path": "lua/lib/network/base/handlers/_packetnetworkhandler.lua"
},
{
"hook_id": "lib/network/base/handlers/basenetworkhandler",
"script_path": "lua/lib/network/base/handlers/_basenetworkhandler.lua"
}
]
}
2 changes: 1 addition & 1 deletion pdmod src/BigLobby - Set Player limit to 128.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@Name BigLobby - Set Player limit to 128 v2.39
@Name BigLobby - Set Player limit to 128 v2.40
@Author Kwhali
@Description Original file + All peer max id and the preplanning colour index have been set from 4 to 128, marked with `biglobby__` prefix.
@Version 1.15
Expand Down
6 changes: 3 additions & 3 deletions pdmod src/mod/network.network_settings
Original file line number Diff line number Diff line change
Expand Up @@ -2294,7 +2294,7 @@
<param type="unit" />
<param type="vector3" /> <!-- position -->
<param type="vector3" /> <!-- direction -->
<param type="int" min="1" max="32" /> <!-- Projectile type index -->
<param type="int" min="1" max="64" /> <!-- Projectile type index -->
<param type="int" min="0" max="128" /> <!-- Peer id -->
</message>

Expand All @@ -2306,7 +2306,7 @@
<param type="object3d" /> <!-- attach object -->
<param type="vector3" /> <!-- local position -->
<param type="vector3" /> <!-- direction -->
<param type="int" min="1" max="32" /> <!-- Projectile type index -->
<param type="int" min="1" max="64" /> <!-- Projectile type index -->
<param type="int" min="0" max="128" /> <!-- Peer id -->
</message>

Expand Down Expand Up @@ -2393,7 +2393,7 @@
<param type="int" min="1" max="128" /> <!-- peer_id -->
</message>

<message name="biglobby__sync_crime_spree_level" receiver="connection" delivery="ordered">
<message name="biglobby__sync_crime_spree_level" receiver="biglobby__connection" delivery="ordered">
<param type="int" min="0" max="128" /> <!-- Peer ID -->
<param type="int" /> <!-- Crime Spree Level -->
<param type="bool" /> <!-- Has failed, host only -->
Expand Down

0 comments on commit c97f904

Please sign in to comment.