Skip to content

Commit

Permalink
1.1.1 [release]
Browse files Browse the repository at this point in the history
  • Loading branch information
Y0SH1M4S73R committed Aug 17, 2022
1 parent a95fd40 commit 595f957
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.1.1]

### Fixed

- Fixed getting datum-tied lists not working. (I can't believe I overlooked this)

## [1.1.0]

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auxlua"
version = "1.1.0"
version = "1.1.1"
authors = ["Y0SH1M4S73R <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion src/lua.rs
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ fn datum_get_var(datum: &DMValue, var: String) -> DMResult<Value> {
| ValueTag::TurfVisLocs
| ValueTag::ObjVisLocs
| ValueTag::MobVisLocs
| ValueTag::ImageVars => Ok(Value::DatumList(value.as_weak()?, value)),
| ValueTag::ImageVars => Ok(Value::DatumList(datum.as_weak()?, value)),
_ => Value::try_from(&value),
})
})
Expand Down

0 comments on commit 595f957

Please sign in to comment.