considering the following piece of code in a velocity template :
set($brandName = $player.brand.name)
set($brandNameExample = "NameExample")
if($brandName == $brandNameExample)
11111
else
22222
end
I always get 22222. Of course, player.brand.name = "NameExample".
Can anybody explain me why and how to get it work please ?
Thanks