Skip to content

Commit

Permalink
Added $JRR array for the JRRAction enum.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dygear committed Feb 4, 2016
1 parent c6e7514 commit 779ff61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/prism_packets.php
Expand Up @@ -1944,7 +1944,6 @@ public function unpack($rawPacket)
}; function IS_JRR() { return new IS_JRR; }

// Values for JRRAction byte

define('JRR_REJECT', 0);
define('JRR_SPAWN', 1);
define('JRR_2', 2);
Expand All @@ -1953,6 +1952,7 @@ public function unpack($rawPacket)
define('JRR_RESET_NO_REPAIR', 5);
define('JRR_6', 6);
define('JRR_7', 7);
$JRR = array(JRR_REJECT => 'JRR_REJECT', JRR_SPAWN => 'JRR_SPAWN', JRR_2 => 'JRR_2', JRR_3 => 'JRR_3', JRR_RESET => 'JRR_RESET', JRR_RESET_NO_REPAIR => 'JRR_RESET_NO_REPAIR', JRR_6 => 'JRR_6', JRR_7 => 'JRR_7');

// AUTOCROSS
// =========
Expand Down

0 comments on commit 779ff61

Please sign in to comment.