Skip to content

Commit

Permalink
Merge pull request #131 from zorp-corp/jon/no-spam
Browse files Browse the repository at this point in the history
removing NPC effect_res print, rename one_punch wire
  • Loading branch information
drbeefsupreme authored Jan 31, 2025
2 parents 860d62e + ee58663 commit bb11af0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion crown/src/drivers/npc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ pub fn npc_client(stream: UnixStream) -> IODriverFn {
}
},
effect_res = handle.next_effect() => {
debug!("effect_res: {:?}", effect_res);
let mut slab = effect_res?; // Closed error should error driver
let Ok(effect_cell) = unsafe { slab.root() }.as_cell() else {
continue;
Expand Down
2 changes: 1 addition & 1 deletion crown/src/drivers/one_punch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub enum OnePunchWire {

impl Wire for OnePunchWire {
const VERSION: u64 = 1;
const SOURCE: &'static str = "one_punch";
const SOURCE: &'static str = "one-punch";

fn to_noun_slab(&self) -> NounSlab {
let mut slab = NounSlab::new();
Expand Down

0 comments on commit bb11af0

Please sign in to comment.