Quote from: Simon on August 19, 2026, 07:44:02 PMHappy to have you here!
I can provide full sleeping gear (airbed, sheets, pillow, blanket) for up to 2 guests in the living room. It makes sense to offer this option to guests from the UK first, to allow you to travel light. I recommend that extra guests book a hotel, but I can host a 3rd guest at my place as long as he brings full sleeping gear himself.
-- Simon
Quote from: WillLem on August 27, 2026, 04:06:01 AMUsers can now set Insert as the default mode
advanced users can set this as their default mode

function TLemmingGame.CheckIfZombiesRemain: Boolean;
var
i: Integer;
ReleaseOffset: Integer;
begin
Result := True;
for i := 0 to LemmingList.Count-1 do
if LemmingList[i].LemIsZombie and not LemmingList[i].LemRemoved then
Exit;
=============== FROM HERE =================
ReleaseOffset := 0;
if (LemmingsToRelease - ReleaseOffset > 0) then
begin
i := Level.Info.SpawnOrder[Level.Info.LemmingsCount - Level.PreplacedLemmings.Count - LemmingsToRelease + ReleaseOffset];
if i >= 0 then
if Gadgets[i].IsPreassignedZombie then
Exit;
end;
============== TO HERE ==============
Result := False;
end;