CommandHelper

CommandHelper

46.5k Downloads

@a = 2; 1 - @a; works, but @a = 2; - @a; shows a RunTimeException (@a is undefined).

LadyCailinBot opened this issue ยท 0 comments

commented

CMDHELPER-3104 - Reported by Pieter12345

Working code:
@A = 2;
1 - @A;

  • 10;

Breaking code:
@A = 2;

  • @A; --> RunTimeException: Using undefined variable: @A