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:
Submodule s2protocol updated: 08bccf2026...d9973aacd0
@@ -31,7 +31,7 @@ namespace Rogiel\StarReplay\Event\Game;
|
|||||||
class DecrementGameTimeRemainingEvent extends AbstractGameEvent {
|
class DecrementGameTimeRemainingEvent extends AbstractGameEvent {
|
||||||
|
|
||||||
/** @var integer */
|
/** @var integer */
|
||||||
public $decrementSeconds;
|
public $decrementMs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string the event name
|
* @return string the event name
|
||||||
@@ -44,10 +44,10 @@ class DecrementGameTimeRemainingEvent extends AbstractGameEvent {
|
|||||||
* @return string a string representation of the event
|
* @return string a string representation of the event
|
||||||
*/
|
*/
|
||||||
public function __toString() {
|
public function __toString() {
|
||||||
return $this->getEventName()."{ decrementSeconds = $this->decrementSeconds }";
|
return $this->getEventName()."{ decrementMs = $this->decrementMs }";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @return integer */
|
/** @return integer */
|
||||||
public function getDecrementSeconds() { return $this->decrementSeconds; }
|
public function getDecrementMs() { return $this->decrementMs; }
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -30,7 +30,7 @@ namespace Rogiel\StarReplay\Event\Game;
|
|||||||
|
|
||||||
class TriggerCameraMoveEvent extends AbstractGameEvent {
|
class TriggerCameraMoveEvent extends AbstractGameEvent {
|
||||||
|
|
||||||
/** @var \Rogiel\StarReplay\Event\Game\Entity\SubgroupUnit */
|
/** @var array */
|
||||||
public $reason;
|
public $reason;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -47,7 +47,7 @@ class TriggerCameraMoveEvent extends AbstractGameEvent {
|
|||||||
return $this->getEventName()."{ reason = $this->reason }";
|
return $this->getEventName()."{ reason = $this->reason }";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @return \Rogiel\StarReplay\Event\Game\Entity\SubgroupUnit */
|
/** @return array */
|
||||||
public function getReason() { return $this->reason; }
|
public function getReason() { return $this->reason; }
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -61,23 +61,9 @@ class Versions {
|
|||||||
34835 => 'Rogiel\StarReplay\Version\Version34835',
|
34835 => 'Rogiel\StarReplay\Version\Version34835',
|
||||||
36442 => 'Rogiel\StarReplay\Version\Version36442',
|
36442 => 'Rogiel\StarReplay\Version\Version36442',
|
||||||
38215 => 'Rogiel\StarReplay\Version\Version38215',
|
38215 => 'Rogiel\StarReplay\Version\Version38215',
|
||||||
38535 => 'Rogiel\StarReplay\Version\Version38535',
|
|
||||||
38624 => 'Rogiel\StarReplay\Version\Version38624',
|
|
||||||
38749 => 'Rogiel\StarReplay\Version\Version38749',
|
38749 => 'Rogiel\StarReplay\Version\Version38749',
|
||||||
38996 => 'Rogiel\StarReplay\Version\Version38996',
|
38996 => 'Rogiel\StarReplay\Version\Version38996',
|
||||||
39117 => 'Rogiel\StarReplay\Version\Version39117',
|
39576 => 'Rogiel\StarReplay\Version\Version39576'
|
||||||
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'
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user