Merge pull request #136 from DraksterAU/MC1.7
Fixes message killed before seen
This commit is contained in:
commit
ef5abd0f03
1 changed files with 2 additions and 2 deletions
|
@ -470,8 +470,8 @@ public class EntityJump extends Entity {
|
||||||
distance = 0;
|
distance = 0;
|
||||||
if (!isInSpace && !isInHyperSpace) {
|
if (!isInSpace && !isInHyperSpace) {
|
||||||
String msg = "Unable to reach hyperspace from a planet";
|
String msg = "Unable to reach hyperspace from a planet";
|
||||||
killEntity(msg);
|
|
||||||
messageToAllPlayersOnShip(msg);
|
messageToAllPlayersOnShip(msg);
|
||||||
|
killEntity(msg);
|
||||||
LocalProfiler.stop();
|
LocalProfiler.stop();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue