Skip to content

Commit 8c7adbe

Browse files
committed
Better description in property actions.
1 parent 6445bbb commit 8c7adbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

blade-engine/src/com/bladecoder/engine/actions/IfPropertyAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import com.bladecoder.engine.model.World;
2020
import com.bladecoder.engine.util.ActionUtils;
2121

22-
@ActionDescription("Execute the actions inside the If/EndIf if the game propert has the specified value.")
22+
@ActionDescription("Execute the actions inside the If/EndIf if the game property has the specified value. Properties are created by the user but the next always exists: SAVED_GAME_VERSION, PREVIOUS_SCENE, CURRENT_CHAPTER")
2323
public class IfPropertyAction extends AbstractIfAction {
2424
@ActionProperty(required = true)
2525
@ActionPropertyDescription("The property name")

blade-engine/src/com/bladecoder/engine/actions/PropertyAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import com.bladecoder.engine.model.VerbRunner;
1919
import com.bladecoder.engine.model.World;
2020

21-
@ActionDescription("Sets a global game property")
21+
@ActionDescription("Sets a global game property. Properties are created by the user but the next ones always exists: SAVED_GAME_VERSION, PREVIOUS_SCENE, CURRENT_CHAPTER")
2222
public class PropertyAction implements Action {
2323
@ActionProperty(required = true)
2424
@ActionPropertyDescription("Property name")

0 commit comments

Comments
 (0)