Possible client-side interpolation jitter fix

This commit is contained in:
Anuken
2021-06-06 22:17:53 -04:00
parent 9be4461b54
commit a64efce5a0
2 changed files with 3 additions and 2 deletions

View File

@@ -143,7 +143,8 @@ public class EntityIO{
if(sl) cont("if(!islocal)");
if(sf){
st(field.name + lastSuf + " = this." + field.name);
//TODO + targetSuf may not give the right result, test it
st(field.name + lastSuf + " = this." + field.name + targetSuf);
}
io(field.type, "this." + (sf ? field.name + targetSuf : field.name) + " = ");