1
0
mirror of https://github.com/Rogiel/star-replay synced 2025-12-05 22:32:46 +00:00

Add support for patch 3.4.0.44401

This commit is contained in:
2016-07-12 13:06:02 -03:00
parent 74b9f8e4af
commit ad91463b8e
4 changed files with 7 additions and 21 deletions

View File

@@ -31,7 +31,7 @@ namespace Rogiel\StarReplay\Event\Game;
class DecrementGameTimeRemainingEvent extends AbstractGameEvent {
/** @var integer */
public $decrementSeconds;
public $decrementMs;
/**
* @return string the event name
@@ -44,10 +44,10 @@ class DecrementGameTimeRemainingEvent extends AbstractGameEvent {
* @return string a string representation of the event
*/
public function __toString() {
return $this->getEventName()."{ decrementSeconds = $this->decrementSeconds }";
return $this->getEventName()."{ decrementMs = $this->decrementMs }";
}
/** @return integer */
public function getDecrementSeconds() { return $this->decrementSeconds; }
public function getDecrementMs() { return $this->decrementMs; }
}

View File

@@ -30,7 +30,7 @@ namespace Rogiel\StarReplay\Event\Game;
class TriggerCameraMoveEvent extends AbstractGameEvent {
/** @var \Rogiel\StarReplay\Event\Game\Entity\SubgroupUnit */
/** @var array */
public $reason;
/**
@@ -47,7 +47,7 @@ class TriggerCameraMoveEvent extends AbstractGameEvent {
return $this->getEventName()."{ reason = $this->reason }";
}
/** @return \Rogiel\StarReplay\Event\Game\Entity\SubgroupUnit */
/** @return array */
public function getReason() { return $this->reason; }
}

View File

@@ -61,23 +61,9 @@ class Versions {
34835 => 'Rogiel\StarReplay\Version\Version34835',
36442 => 'Rogiel\StarReplay\Version\Version36442',
38215 => 'Rogiel\StarReplay\Version\Version38215',
38535 => 'Rogiel\StarReplay\Version\Version38535',
38624 => 'Rogiel\StarReplay\Version\Version38624',
38749 => 'Rogiel\StarReplay\Version\Version38749',
38996 => 'Rogiel\StarReplay\Version\Version38996',
39117 => 'Rogiel\StarReplay\Version\Version39117',
39576 => 'Rogiel\StarReplay\Version\Version39576',
39948 => 'Rogiel\StarReplay\Version\Version39948',
40384 => 'Rogiel\StarReplay\Version\Version40384',
40977 => 'Rogiel\StarReplay\Version\Version40977',
41128 => 'Rogiel\StarReplay\Version\Version41128',
41219 => 'Rogiel\StarReplay\Version\Version41219',
41743 => 'Rogiel\StarReplay\Version\Version41743',
41973 => 'Rogiel\StarReplay\Version\Version41973',
42253 => 'Rogiel\StarReplay\Version\Version42253',
42932 => 'Rogiel\StarReplay\Version\Version42932',
43199 => 'Rogiel\StarReplay\Version\Version43199',
43478 => 'Rogiel\StarReplay\Version\Version43478'
39576 => 'Rogiel\StarReplay\Version\Version39576'
];
}