Incorrect Error Message When Attempting to Paste Grid in World With Copy and Paste Off
I ran into a issue a few days ago where I thought the game was broken when I was unable to paste in creative mode. It showed an error like the one below. (The header should be changed to ERROR by the way.)
The error message showed up even though I was in creative mode and this confused me until I realized that copy and paste was disabled in the world. I hope that this issue gets fixed so other people don't get confused in the future.
Technical info (And a way to fix this):
The code responsible to show this error message is in MyClipboardComponent.HandleGameInput(). The code below that showed the error screen above only checks if the player does not have creative mode tools and if copy and paste is disabled (in case of a creative mode world), which explains the confusing message. The check below can be changed to check if MySession.Static.SurvivalMode is true, and if MySession.Static.HasCreativeRights is false for singleplayer or if MySession.Static.CreativeToolsEnabled(Sync.MyId) is false in the case of a multiplayer world.
Another check after can be added to to check if MySession.Static.Settings.EnableCopyPaste is false and if MySession.HasCreativeRights is true for singleplayer or if MySession.Static.CreativeToolsEnabled(Sync.MyId)is true in the case of a multiplayer world to show a error screen stating that copy and paste is disabled.
I am unable to edit the original post as my editing permissions were revoked (probably due to many edits on the technical section.
Here is the code to replace the code above to fix this issue:
The new last check should also include a check if MySession.Static.CreativeMode is true.
I am unable to edit the original post as my editing permissions were revoked (probably due to many edits on the technical section.
Here is the code to replace the code above to fix this issue:
The new last check should also include a check if MySession.Static.CreativeMode is true.
Hello, Engineer!
Thank you for your report and a proposed fix! I reproduced this issue and reported it internally.
Kind regards,
Keen Software House, QA Department
Hello, Engineer!
Thank you for your report and a proposed fix! I reproduced this issue and reported it internally.
Kind regards,
Keen Software House, QA Department
Hello Engineer,
We’re pleased to inform you that this issue has been resolved in version 205.
As such, we’ll be closing this thread.
If you encounter any other issues with the game, please don’t hesitate to start a new thread here on the forum—we’re always happy to assist!
Happy engineering!
Kind regards,
Keen Software House - QA Department
Hello Engineer,
We’re pleased to inform you that this issue has been resolved in version 205.
As such, we’ll be closing this thread.
If you encounter any other issues with the game, please don’t hesitate to start a new thread here on the forum—we’re always happy to assist!
Happy engineering!
Kind regards,
Keen Software House - QA Department
Replies have been locked on this page!