You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a new hotkey driven component, essentially a simplified Action button or an option on the Action Button, that will disable UnDo beyond the point at which that action is taken. This feature would be of use in module design at certain checkpoints where accidental undos irrevocably compromise the gameflow - typically, when a card is drawn.
A code fragment that might achieve this (taken from GameRefresher.java is:
{
final BasicLogger log = GameModule.getGameModule().getBasicLogger();
if (log != null) {
log.blockUndo(1);
}
The text was updated successfully, but these errors were encountered:
Create a new hotkey driven component, essentially a simplified Action button or an option on the Action Button, that will disable UnDo beyond the point at which that action is taken. This feature would be of use in module design at certain checkpoints where accidental undos irrevocably compromise the gameflow - typically, when a card is drawn.
A code fragment that might achieve this (taken from GameRefresher.java is:
The text was updated successfully, but these errors were encountered: