Skip to content

Commit

Permalink
fix: season beta ctf fixes
Browse files Browse the repository at this point in the history
map-specific object imports appear to have changed
  • Loading branch information
wtfrank committed Dec 21, 2024
1 parent 796a4f8 commit e278b48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/objects/impls/arena/body_part.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::{constants::Part, objects::GameObject, prelude::*};
use js_sys::Object;
use wasm_bindgen::prelude::*;

#[wasm_bindgen(module = "arena")]
#[wasm_bindgen(module = "arena/season_beta/capture_the_flag/basic/prototypes")]
extern "C" {
#[wasm_bindgen(js_name = BodyPart)]
pub static BODY_PART_PROTOTYPE: Object;
Expand Down
2 changes: 1 addition & 1 deletion src/objects/impls/arena/flag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::{objects::GameObject, prelude::*};
use js_sys::Object;
use wasm_bindgen::prelude::*;

#[wasm_bindgen(module = "arena")]
#[wasm_bindgen(module = "arena/season_beta/capture_the_flag/basic/prototypes")]
extern "C" {
#[wasm_bindgen(js_name = Flag)]
pub static FLAG_PROTOTYPE: Object;
Expand Down

0 comments on commit e278b48

Please sign in to comment.