Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Error indexing after git pull

A topic by grakushkin created 5 days ago Views: 22 Replies: 3
Viewing posts 1 to 3

I manually downloaded an older repo that i had up on github and tried to load it up. Project runs fine, but GMLive doesnt seem to connect. I'm getting this error: 

Error indexing `C:/Users/George/Documents/GameMakerStudio2/EoE_V1/scripts/scr_modifiable_stats/scr_modifiable_stats.gml`: [L66,c2]: Unexpected character `Γ` (ord 226)

Warning: live_call outside of named scope in `C:/Users/George/Documents/GameMakerStudio2/EoE_V1/scripts/scr_tooltip_text/scr_tooltip_text.gml` [L3,c4]

Project load took 801ms

Listening on port 5100...

NOTE: "live" code execution errors go into your Output window!

___
Any ideas as to what might be happening? 

Deleting that line and then a few more that popped up after fixed the problem.

Developer

It’s probably the so-called non-breaking space or any of other uncommon space characters - GameMaker IDE/compiler are better at handling these than me since they get to use C#’s “is this character a space” function.

ah gotcha. Thats interesting, I didn't know those existed!