diff --git a/src/edu/nps/moves/dis7/examples/PduReaderPlayer.java b/src/edu/nps/moves/dis7/examples/PduReaderPlayer.java
index e785998b8a3abb5e9af6bfe87b95caed6c157014..9525e97c4bb8af435db503b988085e34accb35d4 100644
--- a/src/edu/nps/moves/dis7/examples/PduReaderPlayer.java
+++ b/src/edu/nps/moves/dis7/examples/PduReaderPlayer.java
@@ -44,6 +44,11 @@ public class PduReaderPlayer
         sendToNet = Boolean.valueOf(args[1]);
         break;
       case 3:
+        outDir = args[0];
+        mcast = args[1];
+        port = Integer.parseInt(args[2]);
+        break;
+      case 4:
         outDir = args[0];
         mcast = args[1];
         port = Integer.parseInt(args[2]);
@@ -52,6 +57,7 @@ public class PduReaderPlayer
       default:
         System.err.println("Usage: PduReaderPlayer() or "
                 + "PduReaderPlayer(\"outputdir\", \"sendToNet true/false\") or "
+                + "PduReaderPlayer(\"outputdir\", \"ipPort\", \"sendToNet true/false\") or "
                 + "PduReaderPlayer(\"outputdir\", \"multicast address\", \"ipPort\", \"sendToNet true/false\"");
         System.exit(1);
     }