Note: The name of the title is probably not the right one, so if anyone has a better title, shoot.
Let G be a digraph with weighted edges and vertices with real values.
The values of vertices are defined recursively: $$v_{t+1} =v_t -\sum_{w\in n^+(v)}\frac{r(vw)v_t}{\sum_{w\in n^+(v)}r(vw)}+\sum_{w\in n^-(v)}\frac{r(wv)w_t}{\sum_{x\in n^+(w)}r(wx)}$$
Where $v(t)$ is the value of $v$ at time $t$, $n^+(v)$ is the set of vertices whose edges are pointing to $v$, $n^-(v)$ is the set of vertices whose edges are pointing from $v$, $r(wv)$ is the weight of the edge $wv$, and $r(wv) > 0$.
So my question is, how does one go about proving that $$\sum_{v\in V(G)}v(t) = \sum_{v\in V(G)}v(t+1).$$
I have tried proving this for a couple weeks, but honestly I don't even know where to start. Maybe I'm overlooking something trivial, or the question could be transformed into something more solvable, in any case I hope you guys can help me, thanks.
EDIT: The equation has been updated (this was the original equation before I stupidly reduced it and put it here) to account for cases mentioned in the comments and notation has been changed from $v(t)$ to $v_t$.