Merge pull request #6941 from spookydonut/parsefixes

Fix some parse errors
This commit is contained in:
Atermonera
2020-04-04 23:33:15 -07:00
committed by GitHub
4 changed files with 7 additions and 7 deletions

View File

@@ -6,10 +6,10 @@
*/
// Determiner constants
#define DET_NONE 0x00;
#define DET_DEFINITE 0x01; // the
#define DET_INDEFINITE 0x02; // a, an, some
#define DET_AUTO 0x04;
#define DET_NONE 0x00
#define DET_DEFINITE 0x01 // the
#define DET_INDEFINITE 0x02 // a, an, some
#define DET_AUTO 0x04
/*
* Misc

View File

@@ -125,7 +125,7 @@
var/list/things = orange(1, src)
if(locate(/obj/structure/grille in things) || locate(/obj/structure/lattice in things) || locate(/turf/simulated in things) || locate(/turf/unsimulated in things))
if(locate(/obj/structure/grille) in things || locate(/obj/structure/lattice) in things || locate(/turf/simulated) in things || locate(/turf/unsimulated) in things)
return 1
else
return 0

View File

@@ -261,7 +261,7 @@
/obj/mecha/proc/check_for_support()
var/list/things = orange(1, src)
if(locate(/obj/structure/grille in things) || locate(/obj/structure/lattice in things) || locate(/turf/simulated in things) || locate(/turf/unsimulated in things))
if(locate(/obj/structure/grille) in things || locate(/obj/structure/lattice) in things || locate(/turf/simulated) in things || locate(/turf/unsimulated) in things)
return 1
else
return 0

View File

@@ -181,7 +181,7 @@ var/list/shoreline_icon_cache = list()
/turf/simulated/floor/water/contaminated
desc = "This water smells pretty acrid."
var poisonlevel = 10
var/poisonlevel = 10
turf/simulated/floor/water/contaminated/Entered(atom/movable/AM, atom/oldloc)
..()