Minor fix

Changed net_active to a boolean
This commit is contained in:
VerbenaIDK 2024-12-19 15:48:35 -03:00
parent f1a452f2ed
commit 2e0926ca6a

View file

@ -11,8 +11,8 @@ pub fn network() -> Sender<Vec<i64>> {
let tx: Sender<Vec<i64>> = tx.clone();
thread::spawn( move || {
let mut net_active = 1;
while net_active == 1 {
let mut net_active = true;
while net_active {
let server_socket = UdpSocket::bind("0.0.0.0:0").unwrap();
let target = "100.127.105.90:4000";
let dat = rx.recv().unwrap();
@ -25,7 +25,7 @@ pub fn network() -> Sender<Vec<i64>> {
}
if dat[0] == 0 { // code 0, kills thread
net_active = 0;
net_active = false;
}
if dat[0] == 1 {