mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-24 19:45:43 +01:00
Fix MFD end sign; resolves #814
This commit is contained in:
parent
c84f3564d5
commit
a32fa2ab46
@ -642,6 +642,7 @@ public class DGroup implements PlayerGroup {
|
||||
game.setWorld(gameWorld);
|
||||
|
||||
for (DGamePlayer player : getDGamePlayers()) {
|
||||
player.setInstanceWorld(gameWorld);
|
||||
player.setLastCheckpoint(gameWorld.getStartLocation(this));
|
||||
if (player.getWolf() != null) {
|
||||
player.getWolf().teleport(player.getLastCheckpoint());
|
||||
|
@ -57,6 +57,10 @@ public abstract class DInstancePlayer extends DGlobalPlayer implements InstanceP
|
||||
return instanceWorld.getWorld();
|
||||
}
|
||||
|
||||
public void setInstanceWorld(InstanceWorld instanceWorld) {
|
||||
this.instanceWorld = instanceWorld;
|
||||
}
|
||||
|
||||
// Players in dungeons never get announcer messages
|
||||
@Override
|
||||
public boolean isAnnouncerEnabled() {
|
||||
|
Loading…
Reference in New Issue
Block a user