Forgot to actual create cells. oops.

This commit is contained in:
austin 2021-07-30 22:15:52 -04:00
parent 84a416b99f
commit c25ab0229c
2 changed files with 3 additions and 2 deletions

View File

@ -57,9 +57,10 @@ public class DataCellManager {
dataCells[x][y].addPlayer(player);
} else {
//create data cell
dataCells[x][y] = new ServerDataCell();
//add player
dataCells[x][y].addPlayer(player);
}
//stream cell to player
}
}
}

View File

@ -29,7 +29,7 @@ public class ServerDataCell {
* first comes into range of the cell.
* @param virtualCell
*/
public ServerDataCell(VirtualCell virtualCell, Player p){
public ServerDataCell(){
}