Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.0.0 Beta 4, 3.0.0 Beta 1
-
Fix Version/s: 3.1.0
-
Component/s: Extensions
-
Labels:None
Description
Right now, when a user is kicked, the Room class broadcasts a userDeparture event. A user has suggested that it broadcast a userKick event. Code change would replace line 1029. Suggested change is:
if(item.reason != undefined) {
dispatchEvent(
);
} else {
dispatchEvent(
);
}
AS2 ISSUE: Reinvestigate for AS3