Jump to content

[41.33] Can't write with crayons, blue pens or red pens


Banjo

Recommended Posts

I don't know if this is strictly classed as a "bug", but it is not possible to write journals, etc. using blue pens, red pens or crayons. Only black pens ("pens") and pencils can be used.

 

I took a look at the code and I think it might be because "ISInventoryPaneContextMenu.lua" contains the following line:

        local editable = getSpecificPlayer(player):getInventory():contains("Pencil") or getSpecificPlayer(player):getInventory():contains("Pen")

... that should be...

        local editable = getSpecificPlayer(player):getInventory():contains("Pencil") or getSpecificPlayer(player):getInventory():contains("Pen") or getSpecificPlayer(player):getInventory():contains("BluePen") or getSpecificPlayer(player):getInventory():contains("RedPen") or getSpecificPlayer(player):getInventory():contains("Crayons")

 

???

 

Currently, I use a modded version of "ISInventoryPaneContextMenu.lua" to fix this, but it wold be great to have it fixed officially, if possible. It doesn't make sense if I can't write with a blue pen but can with a black one, surely?

Link to comment
Share on other sites

  • 6 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...