fixed a bug in drawBubble

This commit is contained in:
Zeno Rogue 2019-12-26 09:40:28 +01:00
parent 78930f08f9
commit b53b98f0d5
1 changed files with 1 additions and 1 deletions

View File

@ -3773,7 +3773,7 @@ struct flashdata {
vector<flashdata> flashes;
EX void drawBubble(cell *c, color_t col, string s, ld size) {
auto fd = flashdata(ticks, 1000, c, col, 1);
auto fd = flashdata(ticks, 1000, c, col, 0);
fd.text = s;
fd.angle = size;
flashes.push_back(fd);