Add comment for other people

This commit is contained in:
Mats 2016-03-07 23:08:34 +01:00
parent cc354db464
commit ee9d8d6365
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public class OutgoingTransformer {
int effectid = input.readInt();
if (effectid >= 1000 && effectid < 2000 && effectid != 1005) //Sound effect
throw new CancelException();
if (effectid == 1005)
if (effectid == 1005) //Fix jukebox
effectid = 1010;
output.writeInt(effectid);
}