Update spawn position/rotation of bows in shortbow

This commit is contained in:
Ryan Huffman 2017-02-23 16:03:23 -08:00
parent 4c310e1048
commit 0da9f72c42
3 changed files with 1513 additions and 1473 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -93,11 +93,11 @@ function findChildrenWithName(parentID, name) {
}
function getPropertiesForEntities(entityIDs, properties) {
var properties = [];
var props = [];
for (var i = 0; i < entityIDs.length; ++i) {
properties.push(Entities.getEntityProperties(entityIDs[i], properties));
props.push(Entities.getEntityProperties(entityIDs[i], properties));
}
return properties;
return props;
}