remove stuff not meant for main
Some checks failed
Rust / rustfmt (pull_request) Successful in 24s
Rust / clippy (pull_request) Failing after 1m23s
Rust / build (pull_request) Successful in 3m4s

This commit is contained in:
Dominic 2024-07-07 13:40:07 +02:00
parent 2874f832db
commit bf6af37be1
Signed by: msrd0
GPG key ID: AAF7C8430CA3345D

View file

@ -101,9 +101,9 @@ impl Room {
const STOVE_HEIGHT: f32 = 0.025;
const SINK_HEIGHT: f32 = 0.5;
#[allow(clippy::single_match, unreachable_patterns)] // we'll add more stuff later
#[allow(clippy::single_match)] // we'll add more stuff later
match room_type {
_ => {
RoomType::Kitchen => {
// in a kitchen, we always add a fridge
let fridge_pos = u8::gen_range(0, 2) * (width - 1);
empty_spots.swap_remove(&fridge_pos);