mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-11 03:19:46 +01:00
Allow crewmate to be cyan when initially placing it down
For some reason, the only way to get a cyan crewmate is by cycling through an already-existing crewmate by keeping left-clicking on it. This is because when you cycle through crewmate colors, the allowed colors are 0-5, but when you place down a crewmate, it picks a random color from 1-5, which seems to be a bit consistent. So placing and cycling a crewmate now use the same color ranges.
This commit is contained in:
parent
99562075c5
commit
4d0e1549a5
1 changed files with 1 additions and 1 deletions
|
@ -4948,7 +4948,7 @@ void editorinput()
|
||||||
{
|
{
|
||||||
if(ed.numcrewmates()<100)
|
if(ed.numcrewmates()<100)
|
||||||
{
|
{
|
||||||
addedentity(ed.tilex+ (ed.levx*40),ed.tiley+ (ed.levy*30),15,1 + int(fRandom() * 5));
|
addedentity(ed.tilex+ (ed.levx*40),ed.tiley+ (ed.levy*30),15,int(fRandom() * 6));
|
||||||
ed.lclickdelay=1;
|
ed.lclickdelay=1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue