Statpanel / Verb panel not updating properly in webclient. I am working on a turn based battle system and using the statpanel to show debug information, as well as add remove commands based on whose turn it is. In the client, everything works and updates properly, however when I run the game in dream deamon and connect via the webclient, the visuals are not updating properly. I have reason to believe it is purely a visual problem, because a verb is usable when its your turn, and unusable when it is not. The verb is supposed to be taken from the mob (and it is, in dream seeker).
Numbered Steps to Reproduce Problem:
Code Snippet (if applicable) to Reproduce Problem:
mob
Stat()
var/_battle/b = battle
var/list/l = b.parts
statpanel("debug")
stat("battle:", b)
stat("round:", b.round)
stat("turn [b.turn]:", "[l[b.turn]]")
stat("timer:",b.timer)
_battle
parent_type = /obj/
var
round = 1
turn = 0
parts [0]
timer_total = 6
timer = 6
mob
turnMob = null
proc
give_turn_controls(mob/m)
m.verbs += typesof(/mob/currentPlayer/verb)
take_turn_controls(mob/m)
m.verbs -= typesof(/mob/currentPlayer/verb)
Expected Results:
properly updated visual of stat and verb panel
Actual Results:
improper updates/visuals
Does the problem occur:
Every time? Or how often? Every Time
In other games? NA
In other user accounts? Yes
On other computers? NA
When does the problem NOT occur?
In the dream seeker client.