I'm trying to use data stored in a capability on the server side as part of rendering on the client side. I have the networking working correctly, ie I can receive the data on request and l and log it, but I'm not sure where to store the data that I have synced across from the server. I essentially send a packet from the client when I'm about to need the data, then the server responds with the necessary data. Where should I store the data from the server so I can access it when I am rendering?
My source is on GitHub: http://github.com/bluepython508/Linguism
The data I'm trying to sync is the known spells (See the
net.soroos.ben.linguism.guide.network
package)