Support for broadcasting with either a custom attention level

(for system messages), or a custom mode (for user broadcasts).


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5693 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2009-03-25 21:23:32 +00:00
parent 52cedb5bdb
commit a419ed8455
6 changed files with 30 additions and 22 deletions
@@ -57,7 +57,7 @@ public class CrowdPeerDispatcher extends InvocationDispatcher<CrowdPeerMarshalle
switch (methodId) {
case CrowdPeerMarshaller.DELIVER_BROADCAST:
((CrowdPeerProvider)provider).deliverBroadcast(
source, (Name)args[0], (String)args[1], (String)args[2], ((Boolean)args[3]).booleanValue()
source, (Name)args[0], ((Byte)args[1]).byteValue(), (String)args[2], (String)args[3]
);
return;