[#bugs] The Joppa zealot's particle text appears to be broken; the text that formerly ap...

Issue #6222 resolved
Freehold Games Bot Account created an issue

Marked for crossposting by: helado, animated ice cream

Message (jump):

<Noelle Lavenza (transgendeer)> The Joppa zealot's particle text appears to be broken; the text that formerly appeared when shouting doesn't show up at all.
cs public void ParticleText(string Text, float xVel, float yVel, char color = ' ', bool IgnoreVisibility = false) { if (IgnoreVisibility || IsVisible()) { CurrentCell?.ParticleText(Text, xVel, yVel, color); } }
This particular override doesn't pass IgnoreVisibility to Cell.ParticleText, which may be part of the issue. Cell.ParticleText(string Text, float xVel, float yVel, char color = ' ', bool IgnoreVisibility = true) does work, implying that may be correct.

Comments (2)

  1. Log in to comment