Skip to content
Snippets Groups Projects
Commit 41d4edd7 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

make surg result more descriptive

parent 538d1c95
No related branches found
No related tags found
1 merge request!8938allow voice change from RA
......@@ -170,7 +170,7 @@ globalThis.rulesAutosurgery = (function() {
} else if (slave.tastes === 0 && thisSurgery.tastes === -1) {
commitProcedure(`surgery to muffle ${his} sense of taste`, s => { s.tastes = -1; });
} else if (slave.voice !== thisSurgery.voice) {
commitProcedure(`surgery to alter ${his} voice`, s => { s.voice = thisSurgery.voice; });
commitProcedure(`surgery to ${(slave.voice > thisSurgery.voice) ? "lower" : "raise"} ${his} voice`, s => { s.voice = thisSurgery.voice; });
}
if (slave.lactation === 2 && thisSurgery.lactation === 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment