mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
Compatibility fix with older v3 clients
This commit is contained in:
parent
4a416425ab
commit
c5d0e51bd5
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@ package brainwine.gameserver.server.messages;
|
|||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
import brainwine.gameserver.server.Message;
|
||||
|
@ -25,7 +26,7 @@ public class ZoneSearchMessage extends Message {
|
|||
info.add(zone.getName());
|
||||
info.add(zone.getPlayers().size());
|
||||
info.add(0); // followees count
|
||||
info.add(null); // followees
|
||||
info.add(Collections.EMPTY_LIST); // followees
|
||||
info.add(0); // active duration
|
||||
info.add((int)(zone.getExplorationProgress() * 100));
|
||||
info.add(zone.getBiome());
|
||||
|
|
Loading…
Add table
Reference in a new issue