mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-28 02:52:28 +00:00
Merge pull request #6941 from spookydonut/parsefixes
Fix some parse errors
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user