mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:43:50 +02:00
Update handControllerGrab.js
added a semicolon to the end of a return statement
This commit is contained in:
parent
1f7914766c
commit
affb0253db
1 changed files with 2 additions and 2 deletions
|
@ -220,7 +220,7 @@ function MyController(hand, triggerAction) {
|
|||
|
||||
var grabbableData = getEntityCustomData(GRABBABLE_DATA_KEY, nearbyEntities[i], defaultGrabbableData);
|
||||
if (grabbableData.grabbable === false) {
|
||||
return
|
||||
return;
|
||||
}
|
||||
|
||||
props = Entities.getEntityProperties(nearbyEntities[i], ["position", "name", "collisionsWillMove", "locked"]);
|
||||
|
@ -546,4 +546,4 @@ function cleanup() {
|
|||
}
|
||||
|
||||
Script.scriptEnding.connect(cleanup);
|
||||
Script.update.connect(update);
|
||||
Script.update.connect(update);
|
||||
|
|
Loading…
Reference in a new issue