Changeset 685


Ignore:
Timestamp:
Jul 29, 2025, 7:17:54 PM (14 hours ago)
Author:
chronos
Message:
  • Fixed: World size was always set to minimum on start.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Start.pas

    r683 r685  
    396396      else WorldSize := DefaultWorldSize;
    397397    if WorldSize > MaxWorldSize then WorldSize := MaxWorldSize;
    398     if WorldSize > 0 then WorldSize := 0;
     398    if WorldSize < 0 then WorldSize := 0;
    399399    if ValueExists('LandMass') then StartLandMass := Reg.ReadInteger('LandMass')
    400400      else StartLandMass := DefaultLandMass;
Note: See TracChangeset for help on using the changeset viewer.