|
@@ -264,7 +264,8 @@ this->text_offsets = text_offsets;
|
|
|
if (pos_len.size() > 0) {
|
|
|
for (int i = 0; i < pos_len.size(); ++i) {
|
|
|
int active = 0;
|
|
|
- if (random_activate((level + 1) / 2)) { // 8
|
|
|
+ //if (random_activate((level + 1) / 2)) { // 8
|
|
|
+ if (random_activate(level * 11)) { // level = 4, so it's 44
|
|
|
int c = word_mangler(pos_len[i]);
|
|
|
if (c) {
|
|
|
active = 1;
|
|
@@ -273,14 +274,15 @@ this->text_offsets = text_offsets;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (random_activate((level + 1) / 2)) { // 4
|
|
|
+ //if (random_activate((level + 1) / 2)) { // 4
|
|
|
+ if (random_activate(level * 11)) { // level = 4, so it's 44
|
|
|
if (word_wrangler(pos_len[i])) {
|
|
|
this->mangle_count++;
|
|
|
active = 1;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (!active && random_activate((level + 1) / 2)) {
|
|
|
+ if (!active && random_activate(level)) { //level = 4, so it's 4
|
|
|
if (word_tangler(pos_len[i])) {
|
|
|
this->need_render = 1;
|
|
|
}
|