Update comms.rs

This commit is contained in:
Wizzard 2025-03-15 01:57:48 -04:00
parent 5f99e03b4c
commit 64ebd83016

@ -141,15 +141,6 @@ impl RadarData {
money_reveal_enabled: false
}
}
pub fn set_reveal_money(&mut self, value: bool) {
self.options.reveal_money = value;
self.money_reveal_enabled = value;
}
pub fn get_reveal_money(&self) -> bool {
self.options.reveal_money
}
}
unsafe impl Send for RadarData {}