Skip to content
Snippets Groups Projects
Verified Commit 0ce72900 authored by bcy603's avatar bcy603
Browse files

Fixing lost back appendages in bodyswap

Fixes a bug where the back interface and appendages are lost during
bodyswap.
parent 67b8f2ec
No related branches found
No related tags found
1 merge request!11471Fixing lost back appendages in bodyswap
...@@ -36,6 +36,12 @@ globalThis.bodySwap = function(soul, body, fromGenepool) { ...@@ -36,6 +36,12 @@ globalThis.bodySwap = function(soul, body, fromGenepool) {
soul.tail = body.tail; soul.tail = body.tail;
soul.tailShape = body.tailShape; soul.tailShape = body.tailShape;
soul.tailColor = body.tailColor; soul.tailColor = body.tailColor;
soul.PBack = body.PBack;
soul.wingsShape = body.wingsShape;
soul.appendages = soul.appendages;
soul.appendagesColor = soul.appendagesColor;
soul.appendagesEffectColor = body.appendagesEffectColor;
soul.appendagesEffect = body.appendagesEffect;
soul.origHColor = body.origHColor; soul.origHColor = body.origHColor;
soul.hColor = body.hColor; soul.hColor = body.hColor;
soul.hLength = body.hLength; soul.hLength = body.hLength;
......
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