Hinaichigo
Hinaichigo
Compiling /vg/station produces the following error: `Error at code\modules\client\preferences\subsections\limbs.dm:28:29: Unknown identifier "peg_limb_data"` at the following location in `limbs.dm`: ``` 22 var/static/list/peg_limb_data = list( 23 "internal_name" = "peg", 24 "mode" =...
This applies to `de0b016484a68f8f752da82755522bfe07b58261` When trying to compile `vgstation13-coders/vgstation13`, I encountered the following error: `Error at code\modules\mob\living\say.dm:474:17: Type /mob/living does not have a proc named "isborer"` The lines at that...
When trying to compile /vg/station, the following error occurs: `Error at __DEFINES\global.dm:120:21: Type /datum/map/active does not exist` at the following location: `120 var/shuttle_z = map.zCentcomm //default` `/datum/map/active`is defined multiple times...
While compiling /vg/station, the following error occurs: `Error at code\game\machinery\doors\airlock.dm:1153:9: Expected ':'` ``` 1151 if(M.client) 1152 density ? open(1):close(1) 1153 else if(density) 1154 open(1) ```
Trying to compile /vg/station, the following error occurs: ``` Error at code\names.dm:1:31: No proc named "file2list" ``` The relevant code in `names.dm`: ``` var/list/ai_names = file2list("config/names/ai.txt") ``` file2list is defined...
When attempting to compile /vg/station, this error occurs twice: ``` Error at code\datums\sun.dm:74:7: Cannot peek empty loop stack Error at code\datums\sun.dm:74:7: Cannot peek empty loop stack ``` at the following...
When trying to compile /vg/station, the following error occurs: `Error at code\modules\cmc\crew.dm:32:15: An inferred new requires a type!` at the following location: ``` 21 /obj/machinery/computer/crew ... 32 _using = new()...
When attempting to compile /vg/station, the following error occurs: `Error at code\world.dm:14:37: Unknown identifier "PIXEL_MOVEMENT_MODE"` At the following location: ``` 6 /world 7 mob = /mob/new_player 8 turf = /turf/space...
When attempting to compile /vg/station, the following error occurs: `Error at code\__HELPERS\math\vector\vector.dm:73:24: Expected end of object statement` the relevant lines: ``` 73 /vector/proc/operator+(var/vector/B) 74 return new /vector(x + B.x, y...
Trying to compile `vgstation13-coders/vgstation13`, the following produces the error: `Error at code\modules\paperwork\pen.dm:23:2: Expected ']'` ``` 13 #define REG_NOTBB "\[^\\\[\]+" // [^\]]+ 14 15 // This WAS a macro, but BYOND...