Changed the weird-ass argument ordering for the UserMessage constructors. I'd
like to change the ordering for ChatMessage and its other derivations (the bundle should precede the message) but that's more dangerous as the constructor signature would not change. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4253 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -188,7 +188,7 @@ public class SpeakProvider
|
||||
public static void sendSpeak (DObject speakObj, Name speaker,
|
||||
String bundle, String message, byte mode)
|
||||
{
|
||||
sendMessage(speakObj, new UserMessage(message, bundle, speaker, mode));
|
||||
sendMessage(speakObj, new UserMessage(speaker, bundle, message, mode));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user