Change Eleveator to Lift

This commit is contained in:
Kouril42 2023-02-21 16:23:11 +01:00
parent 88ec6295fc
commit 366cef7a0a

View File

@ -71,7 +71,7 @@ class Place
}
public function setType(string $type): bool
{
if ($type == 'C' or $type == 'S' or $type == 'E' or $type == 'R') {
if ($type == 'C' or $type == 'S' or $type == 'L' or $type == 'R') {
$this->type = $type;
return true;
}