File diff r25708:126008a1bb06 → r25709:feac296d221b
src/script/api/script_list.cpp
Show inline comments
 
@@ -468,7 +468,7 @@ int64 ScriptList::Begin()
 

	
 
int64 ScriptList::Next()
 
{
 
	if (this->initialized == false) {
 
	if (!this->initialized) {
 
		Debug(script, 0, "Next() is invalid as Begin() is never called");
 
		return 0;
 
	}
 
@@ -482,7 +482,7 @@ bool ScriptList::IsEmpty()
 

	
 
bool ScriptList::IsEnd()
 
{
 
	if (this->initialized == false) {
 
	if (!this->initialized) {
 
		Debug(script, 0, "IsEnd() is invalid as Begin() is never called");
 
		return true;
 
	}