Skip to content

Commit

Permalink
vv_react hook already does this actually
Browse files Browse the repository at this point in the history
  • Loading branch information
cadyn committed Jul 22, 2021
1 parent e0ae3e5 commit 223a423
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/turfs/processing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ fn post_process() {
for &i in &copy {
let turf = unsafe { Value::turf_by_id_unchecked(i) };
if cfg!(target_os="linux") {
turf.get(byond_string!("air"))?.call("react_unhooked", &[&turf])?;
turf.get(byond_string!("air"))?.call("vv_react", &[&turf])?;
} else {
turf.get(byond_string!("air"))?.call("react", &[&turf])?;
}
Expand All @@ -693,7 +693,7 @@ fn post_process() {
for &i in &reacters {
let turf = unsafe { Value::turf_by_id_unchecked(i) };
if cfg!(target_os="linux") {
turf.get(byond_string!("air"))?.call("react_unhooked", &[&turf])?;
turf.get(byond_string!("air"))?.call("vv_react", &[&turf])?;
} else {
turf.get(byond_string!("air"))?.call("react", &[&turf])?;
}
Expand Down

0 comments on commit 223a423

Please sign in to comment.