(self, mutator, value)
| 380 | return fits |
| 381 | |
| 382 | def changeMutatedValuePrelim(self, mutator, value): |
| 383 | pyfalog.debug("Changing mutated value for {} / {}: {} => {}".format(mutator.item, mutator.item.mutaplasmid, mutator.value, value)) |
| 384 | if mutator.value != value: |
| 385 | mutator.value = value |
| 386 | eos.db.flush() |
| 387 | return mutator.value |
| 388 | |
| 389 | def changeChar(self, fitID, charID): |
| 390 | pyfalog.debug("Changing character ({0}) for fit ID: {1}", charID, fitID) |
no test coverage detected