3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-29 19:02:55 +02:00

Merge pull request from druiz17/tablet-misspelled-function-call

fix error from using a misspelled function
This commit is contained in:
Seth Alves 2017-03-21 13:30:37 -08:00 committed by GitHub
commit 93341556ff

View file

@ -3601,7 +3601,7 @@ function MyController(hand) {
if (this.stylusTarget.entityID) {
entityPropertiesCache.addEntity(this.stylusTarget.entityID);
this.stylusTarget = calcualteStylusTargetFromEntity(this.stylusTip, this.stylusTarget.entityID);
this.stylusTarget = calculateStylusTargetFromEntity(this.stylusTip, this.stylusTarget.entityID);
} else if (this.stylusTarget.overlayID) {
this.stylusTarget = calculateStylusTargetFromOverlay(this.stylusTip, this.stylusTarget.overlayID);
}