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); dataCells[x][y].addPlayer(player);
} else { } else {
//create data cell //create data cell
dataCells[x][y] = new ServerDataCell();
//add player //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. * first comes into range of the cell.
* @param virtualCell * @param virtualCell
*/ */
public ServerDataCell(VirtualCell virtualCell, Player p){ public ServerDataCell(){
} }