diff --git a/desktop_version/src/editor.cpp b/desktop_version/src/editor.cpp index f7134031..4be20b40 100644 --- a/desktop_version/src/editor.cpp +++ b/desktop_version/src/editor.cpp @@ -4996,7 +4996,7 @@ void editorinput( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map, enti { if(ed.drawmode==3) { - if(ed.numtrinkets<20) + if(ed.numtrinkets<100) { addedentity(ed.tilex+ (ed.levx*40),ed.tiley+ (ed.levy*30),9); ed.lclickdelay=1; @@ -5004,7 +5004,7 @@ void editorinput( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map, enti } else { - ed.note="ERROR: Max number of trinkets is 20"; + ed.note="ERROR: Max number of trinkets is 100"; ed.notedelay=45; } } @@ -5091,7 +5091,7 @@ void editorinput( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map, enti } else if(ed.drawmode==15) //Crewmate { - if(ed.numcrewmates<20) + if(ed.numcrewmates<100) { addedentity(ed.tilex+ (ed.levx*40),ed.tiley+ (ed.levy*30),15,1 + int(fRandom() * 5)); ed.lclickdelay=1; @@ -5099,7 +5099,7 @@ void editorinput( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map, enti } else { - ed.note="ERROR: Max number of crewmates is 20"; + ed.note="ERROR: Max number of crewmates is 100"; ed.notedelay=45; } }